MagicMirror/.eslintrc.json
2016-05-03 19:13:46 -04:00

14 lines
243 B
JSON

{
"rules": {
"indent": ["error", "tab"],
"quotes": ["error", "double"],
"max-len": ["error", 250],
"curly": "error",
"camelcase": ["error", {"properties": "never"}]
},
"env": {
"browser": true,
"node": true,
"es6": true
}
}