Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpcs.xml
More file actions
Latest commit
29 lines (24 loc) · 1.14 KB
/
Copy pathphpcs.xml
File metadata and controls
29 lines (24 loc) · 1.14 KB
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
<?xml version="1.0"?>
<rulesetname="SimpleSAMLphp SAML2 ruleset">
<description>
By default it is less stringent about long lines than other coding standards
</description>
<file>src</file>
<file>tests</file>
<!-- Use this to exclude paths. You can have multiple patterns -->
<!--<exclude-pattern>*/tests/*</exclude-pattern>-->
<!--<exclude-pattern>*/other/*</exclude-pattern>-->
<!-- This is the rule we inherit from. If you want to exclude some specific rules, see the docs on how to do that -->
<ruleref="PSR12"/>
<ruleref="vendor/simplesamlphp/simplesamlphp-test-framework/phpcs-simplesamlphp.xml"/>
<!-- Lines can be a little bit longer before they break the build -->
<ruleref="Generic.Files.LineLength">
<properties>
<propertyname="lineLimit"value="130"/>
<propertyname="absoluteLineLimit"value="130"/>
</properties>
<!-- Exclude files with long lines that we cannot immediately fix -->
<exclude-pattern>src/Assert.php</exclude-pattern>
<exclude-pattern>src/CustomAssertionTrait.php</exclude-pattern>
</rule>
</ruleset>