state.js/.eslintrc.json

29 lines
471 B
JSON
Raw Permalink Normal View History

2019-06-24 19:45:14 +00:00
{
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2015
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}