Have phpcs skip local configuration files

There's little point in phpcs checking LocalSettings.php or the other
*.php files in .gitignore.

Change-Id: Ibea15a3f3a7bfe2571e253ba9e19c1d91dfddeff
This commit is contained in:
Brad Jorsch 2016-11-22 13:12:38 -05:00
parent 4c142e1d99
commit a46ab3d9ed

View file

@ -31,4 +31,7 @@
<exclude-pattern type="relative">^extensions/</exclude-pattern>
<exclude-pattern type="relative">^skins/</exclude-pattern>
<exclude-pattern>.git</exclude-pattern>
<exclude-pattern>AdminSettings.php</exclude-pattern>
<exclude-pattern>LocalSettings.php</exclude-pattern>
<exclude-pattern>StartProfiler.php</exclude-pattern>
</ruleset>