2015-04-27 21:12:31 -07:00
|
|
|
{
|
|
|
|
"rules": {
|
2015-07-20 19:20:54 -04:00
|
|
|
"camelcase": [0, {"properties": "always"}],
|
2015-07-17 09:04:26 -04:00
|
|
|
"comma-spacing": [2, {"before": false, "after": true}],
|
2015-07-17 11:44:26 -04:00
|
|
|
"dot-notation": [2, {"allowKeywords": true}],
|
2015-07-17 08:36:36 -04:00
|
|
|
"curly": [2, "all"],
|
2015-07-20 19:20:54 -04:00
|
|
|
"indent": [2, 4],
|
|
|
|
"key-spacing": [2, {"beforeColon": false, "afterColon": true}],
|
|
|
|
"new-cap": [0, {"newIsCap": true, "capIsNew": true}],
|
2015-04-27 21:12:31 -07:00
|
|
|
"no-alert": [0],
|
2015-07-20 19:36:59 -04:00
|
|
|
"no-eval": [2],
|
2015-04-27 21:12:31 -07:00
|
|
|
"no-extend-native": [2, {"exceptions": ["Date", "String"]}],
|
2015-07-17 12:02:17 -04:00
|
|
|
"no-multi-spaces": [2],
|
2015-07-17 12:20:33 -04:00
|
|
|
"no-octal-escape": [2],
|
2015-07-20 16:31:56 -04:00
|
|
|
"no-underscore-dangle": [2],
|
2015-04-27 21:12:31 -07:00
|
|
|
"no-unused-vars": [2, {"vars": "local", "args": "none"}],
|
2015-11-23 10:46:19 +00:00
|
|
|
"no-script-url": [2],
|
2015-07-20 16:29:10 -04:00
|
|
|
"no-shadow": [2, {"hoist": "functions"}],
|
2015-07-20 19:20:54 -04:00
|
|
|
"quotes": [0, "single"],
|
|
|
|
"linebreak-style": [2, "unix"],
|
|
|
|
"semi": [2, "always"],
|
2015-04-27 21:12:31 -07:00
|
|
|
"space-before-blocks": [2, "always"],
|
2015-07-17 08:47:28 -04:00
|
|
|
"space-before-function-paren": [2, {"anonymous": "never", "named": "never"}],
|
2015-07-17 12:00:39 -04:00
|
|
|
"space-infix-ops": [2, {"int32Hint": false}],
|
2015-04-27 21:12:31 -07:00
|
|
|
"strict": [1, "function"]
|
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"browser": true
|
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"django": false
|
|
|
|
}
|
2015-07-17 08:36:36 -04:00
|
|
|
}
|