-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
30 lines (26 loc) · 1.01 KB
/
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
24
25
26
27
28
29
30
<?xml version="1.0"?>
<ruleset name="PSR12">
<!-- 拡張子が php のものだけに適用 -->
<arg name="extensions" value="php" />
<!-- rule に PSR12 を指定 -->
<rule ref="PSR12" />
<!-- ルール毎の除外ファイル、ディレクトリ -->
<rule ref="PSR1.Files.SideEffects.FoundWithSymbols">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<rule ref="Generic.Files.LineLength.TooLong">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<rule ref="PSR1.Methods.CamelCapsMethodName.NotCamelCaps">
<exclude-pattern>*/tests/*</exclude-pattern>
</rule>
<!-- オプション p:進捗表示 s:エラー表示時にルールを表示 -->
<arg value="ps" />
<!-- 対象のファイル、ディレクトリ -->
<file>src</file>
<file>example</file>
<file>tests</file>
<!-- 除外ファイル、ディレクトリ -->
<exclude-pattern>*/lib/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
</ruleset>