2018-09-25 18:31:15 -07:00
|
|
|
{
|
|
|
|
|
"env": {
|
2019-03-09 22:00:09 -08:00
|
|
|
"node": true,
|
|
|
|
|
"es6": true
|
2018-09-25 18:31:15 -07:00
|
|
|
},
|
|
|
|
|
"extends": "eslint:recommended",
|
|
|
|
|
"parserOptions": {
|
2021-09-19 17:32:01 -07:00
|
|
|
"ecmaVersion": 2020
|
2018-09-25 18:31:15 -07:00
|
|
|
},
|
|
|
|
|
"rules": {
|
|
|
|
|
"indent": [
|
|
|
|
|
"error",
|
|
|
|
|
4
|
|
|
|
|
],
|
|
|
|
|
"linebreak-style": [
|
|
|
|
|
"error",
|
|
|
|
|
"unix"
|
|
|
|
|
],
|
|
|
|
|
"quotes": [
|
|
|
|
|
"error",
|
|
|
|
|
"single"
|
|
|
|
|
],
|
|
|
|
|
"semi": [
|
|
|
|
|
"error",
|
|
|
|
|
"always"
|
2018-11-16 17:51:32 +01:00
|
|
|
],
|
|
|
|
|
"no-console": "off"
|
2018-09-25 18:31:15 -07:00
|
|
|
}
|
2019-03-09 22:00:09 -08:00
|
|
|
}
|