getExcludeFile method

List<String> getExcludeFile()

Get list of excluded file from config

Implementation

List<String> getExcludeFile() => config?['exclude-file'] != null
    ? _getListFromYamlList(config?['exclude-file'] as YamlList)
    : [];