Files
huesser b518ae8edb
Build and Publish Site / docker (push) Successful in 23s
Workflow funktioniert nun wieder. Es gab Probleme nach Aenderungen.
ABER: Die Applikation funktioniert nur lokal. Die deployte Version geht noch nicht.
2026-07-03 13:24:08 +02:00

33 lines
740 B
Plaintext

{
"root": true,
"globals": {
"monaco": true,
"RED": true
},
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"mocha": true,
"jquery": true
},
"extends": [
"eslint:recommended",
"standard"
],
"plugins": [ "eslint-plugin-html", "no-only-tests" ],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
// Built-in rules
"indent": ["error", 4],
"object-shorthand": ["error"],
"no-console": ["error", { "allow": ["debug", "info", "warn", "error"] }],
"no-trailing-spaces": ["error"],
// plugin:no-only-tests
"no-only-tests/no-only-tests": "error"
}
}