tiny-compress-images
Last commit date
.github
1 year ago
.vscode
1 year ago
bin
1 year ago
src
1 year ago
.distignore
1 year ago
.gitignore
1 year ago
.travis.yml
4 years ago
.wp-env.json
1 year ago
LICENSE
3 years ago
composer.json
1 year ago
composer.lock
1 year ago
package-lock.json
1 year ago
package.json
1 year ago
phpcs.xml
1 year ago
phpunit.xml
1 year ago
playwright.config.ts
1 year ago
readme.txt
1 year ago
tiny-compress-images.php
1 year ago
phpcs.xml
25 lines
| 1 | <?xml version="1.0"?> |
| 2 | <ruleset> |
| 3 | <config name="installed_paths" value="vendor/wp-coding-standards/wpcs" /> |
| 4 | |
| 5 | <rule ref="WordPress-Core" /> |
| 6 | <rule ref="Generic.Files.LineLength"> |
| 7 | <properties> |
| 8 | <property name="lineLimit" value="100" /> |
| 9 | <property name="absoluteLineLimit" value="100" /> |
| 10 | <property name="ignoreComments" value="true" /> |
| 11 | </properties> |
| 12 | <exclude-pattern>src/views</exclude-pattern> |
| 13 | </rule> |
| 14 | <rule ref="WordPress.WP.I18n.UnorderedPlaceholders"> |
| 15 | <severity>0</severity> |
| 16 | </rule> |
| 17 | |
| 18 | <file>src</file> |
| 19 | <file>test</file> |
| 20 | <exclude-pattern>src/css</exclude-pattern> |
| 21 | <exclude-pattern>src/data</exclude-pattern> |
| 22 | <exclude-pattern>src/js</exclude-pattern> |
| 23 | <exclude-pattern>vendor</exclude-pattern> |
| 24 | <exclude-pattern>test/</exclude-pattern> |
| 25 | </ruleset> |