tiny-compress-images
Last commit date
bin
7 years ago
src
7 years ago
.gitignore
9 years ago
.travis.yml
7 years ago
LICENSE
10 years ago
NOTES
7 years ago
composer.json
7 years ago
composer.lock
7 years ago
phpcs.xml
7 years ago
readme.txt
7 years ago
tiny-compress-images.php
7 years ago
phpcs.xml
26 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 | <rule ref="WordPress.WP.I18n.UnorderedPlaceholders"> |
| 14 | <severity>0</severity> |
| 15 | </rule> |
| 16 | |
| 17 | <file>tiny-compress-images.php</file> |
| 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>src/vendor</exclude-pattern> |
| 24 | <exclude-pattern>test/</exclude-pattern> |
| 25 | </ruleset> |
| 26 |