This repository has been archived on 2022-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
2018-06-24 18:36:24 +00:00
|
|
|
{
|
|
|
|
"env": {
|
2019-01-05 22:44:59 +00:00
|
|
|
"node": true,
|
|
|
|
"es6": true
|
2018-06-24 18:36:24 +00:00
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"extends": "eslint:recommended",
|
|
|
|
"rules": {
|
|
|
|
"indent": [
|
|
|
|
"error",
|
|
|
|
2
|
|
|
|
],
|
|
|
|
"no-console": "off",
|
|
|
|
"quotes": [
|
|
|
|
"error",
|
|
|
|
"single"
|
|
|
|
],
|
|
|
|
"semi": [
|
|
|
|
"error",
|
|
|
|
"never"
|
2019-01-05 22:44:59 +00:00
|
|
|
],
|
|
|
|
"comma-dangle": [
|
|
|
|
"error",
|
|
|
|
"always-multiline"
|
2018-06-24 18:36:24 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|