mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-19 22:24:11 +00:00
40d389acc9
* ux: rename end action * chore: update demo db * style: tweaks on extracted rundown * chore: prevent console logs in production code * feat: go mode * style: remove window size limits * style: rename delete action * style: small tweaks on icons * fix: style override on params * chore: update test db * refactor: small code quality improvements * refactor: prevent circular imports
26 lines
378 B
Plaintext
26 lines
378 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"
|
|
}
|
|
} |