mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 11:53:49 +00:00
2c47d90f34
* chore(lint): configure project-wide linter * chore(lint): improve linting in files * chore(lint): hide warnings in CI
18 lines
283 B
Plaintext
18 lines
283 B
Plaintext
{
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"plugins": [
|
|
"simple-import-sort"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"simple-import-sort/exports": "error",
|
|
"simple-import-sort/imports": "error"
|
|
}
|
|
}
|