|
2 | 2 | <ruleset name="Custom Standard">
|
3 | 3 | <description>php-nats Coding Standards for Inline Documentation and Comments</description>
|
4 | 4 |
|
| 5 | + <rule ref="Squiz.Functions"> |
| 6 | + <!-- Conflicts with PSR2 --> |
| 7 | + <exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpaceBeforeEquals" /> |
| 8 | + <exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpaceAfterDefault" /> |
| 9 | + </rule> |
| 10 | + |
| 11 | + <rule ref="Squiz.Files"> |
| 12 | + <!-- Avoid to check for .inc files ... always use .php --> |
| 13 | + <exclude name="Squiz.Files.FileExtension.ClassFound" /> |
| 14 | + </rule> |
| 15 | + |
| 16 | + <rule ref="Squiz.WhiteSpace"> |
| 17 | + <!-- Conflict with PSR2 --> |
| 18 | + <exclude name="Squiz.WhiteSpace.FunctionClosingBraceSpace.SpacingBeforeClose" /> |
| 19 | + </rule> |
| 20 | + |
| 21 | + <rule ref="Squiz.NamingConventions"> |
| 22 | + <!-- Do not use underscore prefix for anything private --> |
| 23 | + <exclude name="Squiz.NamingConventions.ValidVariableName.PrivateNoUnderscore" /> |
| 24 | + <exclude name="Squiz.NamingConventions.ValidFunctionName.PrivateNoUnderscore" /> |
| 25 | + </rule> |
| 26 | + |
5 | 27 | <rule ref="Squiz.Commenting">
|
| 28 | + <exclude name="Squiz.WhiteSpace.FunctionSpacing.After" /> |
| 29 | + <exclude name="Squiz.Commenting.LongConditionClosingComment.Missing" /> |
| 30 | + <exclude name="Squiz.Commenting.ClosingDeclarationComment.Missing" /> |
| 31 | + <!-- Don't need file doc comments --> |
| 32 | + <exclude name="Squiz.Commenting.FileComment.Missing" /> |
6 | 33 | <!-- It is too early for PHP7 features to be required -->
|
7 | 34 | <exclude name="Squiz.Commenting.FunctionComment.ScalarTypeHintMissing" />
|
8 | 35 | </rule>
|
|
0 commit comments