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