http/.eslintrc.json

33 lines
539 B
JSON
Raw Permalink Normal View History

2019-09-25 02:29:55 +00:00
{
"env": {
"es6": true,
"node": true,
"mocha": true
},
"globals": {
"riot": true
},
"parserOptions": {
"ecmaVersion": 2015
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}