public IEnumerable <string> GetSection(string name, Func <IEnumerable <string>, IEnumerable <string> > postProcessing)
 {
     return(_configurationFileProvider.ReadFile(name, postProcessing));
 }
 private IList <string> ReadDisableCheckers()
 {
     return
         (_configurationFileProvider.ReadFile(ConfigurationStyleFilenames.ChromiumStyleCheckersDisabled,
                                              x => x.Where(line => !line.TrimStart().StartsWith("#"))).ToList());
 }