Files
tinker_tickets/.eslintrc.json
T
jared d38cc1bfbe
Lint / PHP (phpcs PSR-12) (push) Failing after 7s
Lint / JS (eslint) (push) Failing after 16s
ci: add phpcs and eslint linting workflow
2026-04-13 20:34:21 -04:00

18 lines
358 B
JSON

{
"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"]
}
}