Domember/.eslintrc

42 lines
821 B
Text
Raw Permalink Normal View History

{
"globals": {
"window": true,
"document": true,
"Em": true
},
"env": {
"es6": true
},
"parser": "babel-eslint",
"rules": {
"curly": 2,
"indent": [2, 2, {"VariableDeclarator": {"var": 2, "let": 2, "const": 3}}],
"array-bracket-spacing": [2, "never"],
"comma-spacing": [2, {"before": false, "after": true}],
"keyword-spacing": 2,
"space-before-blocks": 2,
"eqeqeq": 2,
"no-eval": 2,
"no-caller": 2,
"no-undef": 2,
"no-eq-null": 2,
"no-unused-vars": 2,
"no-octal": 2,
"no-redeclare": 2,
"no-self-assign": 2,
"radix": 2,
"no-debugger": 0,
"guard-for-in": 0,
"wrap-iife": 0,
"linebreak-style": 0,
"no-empty": 0,
"no-new": 0,
"no-plusplus": 0,
"dot-notation": 0,
"strict": 0,
"no-ternary": 0,
"quotes": 0,
"one-var": 0
}
}