tiny-compress-images
Last commit date
bin
9 years ago
src
9 years ago
.gitignore
9 years ago
.travis.yml
9 years ago
LICENSE
9 years ago
composer.json
9 years ago
composer.lock
9 years ago
phpcs.xml
9 years ago
readme.txt
9 years ago
tiny-compress-images.php
9 years ago
phpcs.xml
23 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 | </properties> |
| 11 | <exclude-pattern>src/views</exclude-pattern> |
| 12 | </rule> |
| 13 | |
| 14 | <file>tiny-compress-images.php</file> |
| 15 | <file>src</file> |
| 16 | <file>test</file> |
| 17 | <exclude-pattern>src/css</exclude-pattern> |
| 18 | <exclude-pattern>src/data</exclude-pattern> |
| 19 | <exclude-pattern>src/js</exclude-pattern> |
| 20 | <exclude-pattern>src/vendor</exclude-pattern> |
| 21 | <exclude-pattern>test/mock-tinypng-webservice</exclude-pattern> |
| 22 | </ruleset> |
| 23 |