filesafe/public/js/.eslintrc.json

34 lines
451 B
JSON
Raw Normal View History

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