-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
26 lines (22 loc) · 889 Bytes
/
phpcs.xml.dist
File metadata and controls
26 lines (22 loc) · 889 Bytes
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
<?xml version="1.0"?>
<ruleset name="gatographql-extension">
<description>The coding standard of gatographql-extension package</description>
<arg value="p" />
<config name="ignore_warnings_on_exit" value="1" />
<!-- Don't show a warning on the line length -->
<rule ref="Generic.Files.LineLength.MaxExceeded">
<severity>0</severity>
</rule>
<rule ref="Generic.PHP.DisallowRequestSuperglobal"/>
<rule ref="SlevomatCodingStandard.Variables.DisallowSuperGlobalVariable"/>
<rule ref="SlevomatCodingStandard.Arrays.DisallowImplicitArrayCreation"/>
<rule ref="SlevomatCodingStandard.Namespaces.UnusedUses">
<properties>
<property name="searchAnnotations" value="true"/>
</properties>
</rule>
<arg name="colors" />
<arg value="s" />
<!-- Use the PSR12 Standard-->
<rule ref="PSR12" />
</ruleset>