Build and Publish Site / docker (push) Successful in 23s
ABER: Die Applikation funktioniert nur lokal. Die deployte Version geht noch nicht.
33 lines
740 B
Plaintext
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"
|
|
|
|
}
|
|
}
|