-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
23 lines (20 loc) · 788 Bytes
/
phpcs.xml
File metadata and controls
23 lines (20 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<ruleset name="phpcs-standard">
<description>Codestyle ruleset for dgfip d8ci</description>
<!-- Specify standards. -->
<rule ref="PSR2" >
<exclude name="Generic.Files.LineLength.TooLong" />
</rule>
<rule ref="Symfony">
<exclude name="Symfony.Functions.Arguments.Invalid" />
</rule>
<config name="installed_paths" value="vendor/escapestudios/symfony2-coding-standard"/>
<!-- Set ignore extensions. -->
<!-- @todo remove .css to check also the css files. -->
<!-- @see https://www.drupal.org/node/2867601#comment-12075633 -->
<arg name="ignore" value="*.css,*.md,*.txt"/>
<!-- Specify folders. -->
<file>src</file>
<file>tests/phpunit/src</file>
<exclude-pattern>tests/results*</exclude-pattern>
</ruleset>