mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
160ccabebc
* config/eslint: upgrade eslint config * config/eslint: version bump
20 lines
301 B
Plaintext
20 lines
301 B
Plaintext
{
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"plugins": [],
|
|
"rules": {
|
|
"prettier/prettier": ["error", {
|
|
"endOfLine": "auto",
|
|
"singleQuote": true
|
|
}]
|
|
}
|
|
}
|