Add visual return when setting consign.
Fix visual glitches Fix indentation
This commit is contained in:
parent
d800e24c36
commit
9959291cff
5 changed files with 214 additions and 128 deletions
41
.eslintrc
Normal file
41
.eslintrc
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue