]> source.dussan.org Git - gitignore.git/commit
Stop ignoring StyleCop.json 1813/head
authorAndrew Arnott <andrewarnott@gmail.com>
Sun, 27 Dec 2015 15:51:37 +0000 (07:51 -0800)
committerAndrew Arnott <andrewarnott@gmail.com>
Sun, 27 Dec 2015 15:51:37 +0000 (07:51 -0800)
commit346fb93318b0714e0413fbf0dc9d4b176ec5b3a7
treee4ac908281191e26f7bf63456e6b41befe6f1d2b
parent8c9b77cb5c85f6464c0bb31abdf4cfcfdf6833bb
Stop ignoring StyleCop.json

StyleCop.Analyzers is the modern re-invention of StyleCop, and uses a StyleCop.json file that the default .gitignore file made very difficult to check in, and easy to think was checked in but isn't.
See https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/32057fff82adf7cfb92aa50aef69a6b030eedf31/documentation/Configuration.md#source-control for the documented case.

Looking through history, this line was last touched to make it case insensitive, and before that the line was in the original VisualStudio.gitignore file, without justification for why it should ignore all file extensions. From my experience with stylecop, the only file I remember it creating was stylecop.cache. I would change `[Ss]tyle[Cc]op.*` to `[Ss]tyle[Cc]op.cache` but there is already a line for suppressing all *.cache files (which wasn't there when the stylecop line was originally added). So I believe this line is now obsolete, and as I explain above, actually problematic.
VisualStudio.gitignore