filesafe/public/js/.eslintrc.json
2018-10-10 02:52:41 +07:00

34 lines
451 B
JSON

{
"root": true,
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"browser": true
},
"extends": [
"standard"
],
"rules": {
"curly": [
"error",
"all"
],
"quotes": [
"error",
"single"
],
"object-shorthand": [
"error",
"always"
],
"prefer-const": [
"error",
{
"destructuring": "any",
"ignoreReadBeforeAssign": false
}
]
}
}