filesafe/public/js/.eslintrc.json

23 lines
256 B
JSON
Raw Normal View History

{
"root": true,
"parserOptions": {
"ecmaVersion": 5
},
"env": {
"browser": true
},
"extends": [
"standard"
],
"rules": {
"curly": [
"error",
"all"
],
"quotes": [
"error",
"single"
]
}
}