ci: add phpcs and eslint linting workflow
Lint / PHP (phpcs PSR-12) (push) Failing after 7s
Lint / JS (eslint) (push) Failing after 16s

This commit is contained in:
2026-04-13 20:34:21 -04:00
parent 56007f7479
commit d38cc1bfbe
3 changed files with 68 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "script"
},
"rules": {
"no-unused-vars": "warn",
"no-console": "off",
"semi": ["error", "always"],
"eqeqeq": ["error", "always"]
}
}