custom-post-type-permalinks
Last commit date
CPTP
9 years ago
assets
9 years ago
language
9 years ago
.svnignore
9 years ago
CONTRIBUTING.md
9 years ago
CPTP.php
9 years ago
codesniffer.ruleset.xml
9 years ago
composer.json
9 years ago
custom-post-type-permalinks.php
9 years ago
license.txt
12 years ago
readme.md
9 years ago
readme.txt
9 years ago
screenshot-1.png
14 years ago
codesniffer.ruleset.xml
21 lines
| 1 | <?xml version="1.0"?> |
| 2 | <ruleset> |
| 3 | <!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml --> |
| 4 | <!-- See https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/blob/develop/WordPress-Core/ruleset.xml --> |
| 5 | <!-- Include the WordPress ruleset, with exclusions. --> |
| 6 | <rule ref="WordPress"> |
| 7 | <exclude name="Generic.WhiteSpace.ScopeIndent.IncorrectExact" /> |
| 8 | <exclude name="Generic.WhiteSpace.ScopeIndent.Incorrect" /> |
| 9 | <exclude name="WordPress.VIP" /> |
| 10 | <exclude name="Squiz.Commenting" /> |
| 11 | <exclude name="Generic.Commenting" /> |
| 12 | <exclude name="Generic.Files.LowercasedFilename" /> |
| 13 | <exclude name="WordPress.NamingConventions" /> |
| 14 | <exclude name="WordPress.XSS.EscapeOutput.UnsafePrintingFunction" /> |
| 15 | <exclude name="WordPress.XSS.EscapeOutput.OutputNotEscaped" /> |
| 16 | </rule> |
| 17 | |
| 18 | <exclude-pattern>*/vendor/*</exclude-pattern> |
| 19 | <exclude-pattern>*/tests/*</exclude-pattern> |
| 20 | </ruleset> |
| 21 |