37 lines
637 B
JSON
37 lines
637 B
JSON
{
|
|
"env": {
|
|
"es6": true,
|
|
"browser": true,
|
|
"jquery": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module"
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
4
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"double"
|
|
],
|
|
"semi": [
|
|
"warn",
|
|
"always"
|
|
],
|
|
"no-console": [
|
|
"off"
|
|
],
|
|
"no-unused-vars": [
|
|
"warn"
|
|
]
|
|
}
|
|
}
|