exclude js from phpcs
Some checks failed
PHP Code Checker / PHP Code Checker (pull_request) Failing after 41s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Successful in 1m4s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Successful in 1m45s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Successful in 1m8s

This commit is contained in:
André Menrath 2024-10-11 19:20:47 +02:00
parent 2d902806ee
commit d5dcfd5e0c

View file

@ -26,6 +26,9 @@
<!-- Exclude the Node Modules directory. -->
<exclude-pattern>/node_modules/*</exclude-pattern>
<!-- Exclude Javascript files. -->
<exclude-pattern>*.js</exclude-pattern>
<!-- Exclude minified Javascript files. -->
<exclude-pattern>*.min.js</exclude-pattern>