-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
39 lines (32 loc) · 1.61 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
31
32
33
34
35
36
37
38
39
<?xml version="1.0"?>
<!-- phpのファイルがコーディング規約に則っているかを診断するためのphpcsの設定ファイル -->
<ruleset name="phpcs rules">
<rule ref="PSR12">
<exclude name="PSR1.Methods.CamelCapsMethodName.NotCamelCaps"/>
</rule>
<!-- Run against the PHPCompatibility ruleset -->
<rule ref="PHPCompatibility"/>
<config name="testVersion" value="7.2-"/>
<!-- 配列の古い構文を使用禁止にする -->
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
<!-- 配列のインデントを整形 -->
<rule ref="Generic.Arrays.ArrayIndent"/>
<!-- スプレッド演算子とそれが適用される変数/関数呼び出しの間のスペースを制御 -->
<rule ref="Generic.WhiteSpace.SpreadOperatorSpacingAfter"/>
<!-- Gitのマージ競合アーティファクトがないか確認 -->
<rule ref="Generic.VersionControl.GitMergeConflict"/>
<!-- 非推奨の関数を使用禁止にする -->
<rule ref="Generic.PHP.DeprecatedFunctions"/>
<!-- <rule ref="Generic.CodeAnalysis.EmptyStatement"/> -->
<rule ref="Generic.CodeAnalysis.UnconditionalIfStatement"/>
<!-- 拡張子が php のものにだけ適用 -->
<arg name="extensions" value="php" />
<!-- 出力に色を適用 -->
<arg name="colors" />
<!-- オプション p:進捗表示 s:エラー表示時にルールを表示 -->
<arg value="ps" />
<!-- 適用するファイル・ディレクトリ -->
<file>src</file>
<!-- 除外するファイル・ディレクトリ -->
<exclude-pattern>*/vendor/*</exclude-pattern>
</ruleset>