mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
25 lines
487 B
JavaScript
25 lines
487 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
parser: "@typescript-eslint/parser",
|
|
plugins: ["cypress", "prettier", "@typescript-eslint"],
|
|
extends: [
|
|
"standard",
|
|
"eslint:recommended",
|
|
"plugin:prettier/recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
],
|
|
rules: {
|
|
"no-console": ["error"],
|
|
"no-debugger": "error",
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
htmlWhitespaceSensitivity: "ignore",
|
|
},
|
|
],
|
|
},
|
|
};
|