2015-03-09 05:16:17 -05:00
|
|
|
{
|
2017-12-19 06:41:45 -06:00
|
|
|
"extends": "eslint:recommended",
|
2015-03-09 05:16:17 -05:00
|
|
|
"rules": {
|
|
|
|
"camelcase": 2,
|
|
|
|
"quotes": [2, "single"],
|
|
|
|
"no-mixed-spaces-and-tabs": [2, "smart-tabs"],
|
|
|
|
"space-in-parens": 2,
|
|
|
|
"space-before-blocks": 2,
|
2016-05-27 11:38:44 -05:00
|
|
|
"keyword-spacing": 2,
|
2015-03-09 05:16:17 -05:00
|
|
|
"no-lonely-if": 2,
|
|
|
|
"comma-style": 2,
|
2016-05-27 11:38:44 -05:00
|
|
|
"indent": [2, "tab", {"VariableDeclarator": 0}],
|
2015-03-09 05:16:17 -05:00
|
|
|
"no-underscore-dangle": 0,
|
|
|
|
"no-constant-condition": 0,
|
|
|
|
"no-multi-spaces": 0,
|
|
|
|
"strict": 0,
|
|
|
|
"key-spacing": 0,
|
2017-12-19 06:41:45 -06:00
|
|
|
"no-shadow": 0,
|
2020-01-16 08:44:23 -06:00
|
|
|
"no-console": 0,
|
|
|
|
"semi": 2
|
2015-03-09 05:16:17 -05:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"L": true,
|
|
|
|
"module": false,
|
|
|
|
"define": false
|
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"browser": true
|
|
|
|
}
|
|
|
|
}
|