getExcludeExtension method

List<String> getExcludeExtension()

Get list of excluded extensions from config

Implementation

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