synclounge/.eslintrc.json

33 lines
584 B
JSON
Raw Normal View History

2018-01-01 05:55:55 +00:00
{
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"browser": true,
"commonjs": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:vue/essential"
],
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"windows"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
]
}
}