forked from vimeo/psalm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
23 lines (19 loc) · 839 Bytes
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<ruleset name="PHP_CodeSniffer">
<rule ref="PSR2" />
<file>bin/</file>
<file>src/</file>
<file>tests/</file>
<!-- This is a vendor file that we don't want to bother linting. -->
<exclude-pattern>src/Psalm/Internal/CallMap.php</exclude-pattern>
<exclude-pattern>src/Psalm/Internal/Visitor/SimpleNameResolver.php</exclude-pattern>
<!-- These are just examples and stub classes/files, so it doesn't really matter if they're PSR-2 compliant. -->
<exclude-pattern>src/Psalm/Internal/Stubs/</exclude-pattern>
<exclude-pattern>tests/fixtures/</exclude-pattern>
<rule ref="Generic.Files.LineLength">
<exclude-pattern>tests</exclude-pattern>
</rule>
<rule ref="PSR2.Namespaces.UseDeclaration">
<exclude-pattern>*</exclude-pattern>
</rule>
</ruleset>