2020-04-08 16:27:34 +02:00
|
|
|
{
|
|
|
|
"env": {
|
2020-04-13 22:38:10 +02:00
|
|
|
"commonjs": true,
|
2020-04-08 16:27:34 +02:00
|
|
|
"es6": true,
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"extends": "eslint:recommended",
|
2020-04-13 22:38:10 +02:00
|
|
|
"globals": {
|
|
|
|
"Atomics": "readonly",
|
|
|
|
"SharedArrayBuffer": "readonly"
|
|
|
|
},
|
2020-04-08 16:27:34 +02:00
|
|
|
"parserOptions": {
|
2020-04-13 22:38:10 +02:00
|
|
|
"ecmaVersion": 2018
|
2020-04-08 16:27:34 +02:00
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"indent": [
|
|
|
|
"error",
|
|
|
|
4
|
|
|
|
],
|
|
|
|
"linebreak-style": [
|
|
|
|
"error",
|
|
|
|
"unix"
|
|
|
|
],
|
|
|
|
"semi": [
|
2020-04-13 22:38:10 +02:00
|
|
|
"error",
|
2020-04-08 16:27:34 +02:00
|
|
|
"always"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|