mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-17 13:23:35 +00:00
78d5d442cf
* feat: added export options * chore: eslint console proposal --------- Co-authored-by: arc-alex <ac@omnivox.dk>
26 lines
411 B
Plaintext
26 lines
411 B
Plaintext
{
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"jest": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"e2e/**/**.spec.ts",
|
|
"e2e/**/**.test.ts"
|
|
],
|
|
"extends": [
|
|
"plugin:playwright/playwright-test"
|
|
]
|
|
}
|
|
],
|
|
"rules": {
|
|
"no-console": ["warn", { "allow": ["warn", "error"]}]
|
|
}
|
|
} |