25 lines
397 B
JSON
25 lines
397 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"indent": ["error", "tab"],
|
|
"linebreak-style": ["error", "unix"],
|
|
"semi": ["error", "always"],
|
|
"no-console": [
|
|
"error",
|
|
{
|
|
"allow": ["warn", "error"]
|
|
}
|
|
]
|
|
},
|
|
"globals": {
|
|
"ENV": true
|
|
}
|
|
}
|