FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
simplesamlphp/phpcs.xml at master · simplesamlphp/simplesamlphp · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
simplesamlphp
/
simplesamlphp
Public
Notifications
You must be signed in to change notification settings
Fork
704
Star
1.1k
Code
Issues
104
Pull requests
22
Actions
Projects
Wiki
Security and quality
8
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
simplesamlphp
/
phpcs.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (35 loc) · 1.7 KB
Breadcrumbs
simplesamlphp
/
phpcs.xml
Copy path
File metadata and controls
43 lines (35 loc) · 1.7 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
40
41
42
<?
xml
version
=
"
1.0
"
?>
<
ruleset
name
=
"
SimpleSAMLphp ruleset
"
>
<
config
name
=
"
ignore_warnings_on_exit
"
value
=
"
1
"
/>
<
description
>
By default it is less stringent about long lines than other coding standards
</
description
>
<
file
>bin</
file
>
<
file
>modules</
file
>
<
file
>public</
file
>
<
file
>src</
file
>
<
file
>tests</
file
>
<
exclude-pattern
>modules/adfs/*</
exclude-pattern
>
<
exclude-pattern
>public/assets/*</
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
-->
<
rule
ref
=
"
PSR12
"
/>
<
rule
ref
=
"
vendor/simplesamlphp/simplesamlphp-test-framework/phpcs-simplesamlphp.xml
"
/>
<!--
Lines can be a little bit longer before they break the build
-->
<
rule
ref
=
"
Generic.Files.LineLength
"
>
<
properties
>
<
property
name
=
"
lineLimit
"
value
=
"
120
"
/>
<
property
name
=
"
absoluteLineLimit
"
value
=
"
130
"
/>
</
properties
>
<!--
Exclude files with long lines that we cannot immediately fix
-->
<
exclude-pattern
>tests/src/SimpleSAML/Metadata/MetaDataStorageSourceTest.php</
exclude-pattern
>
<
exclude-pattern
>tests/src/SimpleSAML/Metadata/SAMLParserTest.php</
exclude-pattern
>
<
exclude-pattern
>tests/modules/saml/src/Controller/ServiceProviderTest.php</
exclude-pattern
>
</
rule
>
<!--
Ignore files with side effects that we cannot fix
-->
<
rule
ref
=
"
PSR1.Files.SideEffects
"
>
<
exclude-pattern
>bin/*</
exclude-pattern
>
<
exclude-pattern
>public/_include.php</
exclude-pattern
>
<
exclude-pattern
>src/_autoload_modules.php</
exclude-pattern
>
<
exclude-pattern
>tests/_autoload_modules.php</
exclude-pattern
>
</
rule
>
</
ruleset
>
Back
|
FazBrowse Home
|
New Git URL