Add more eslint rules

This commit is contained in:
Diogo Franco (Kovensky) 2016-11-21 09:07:38 +09:00
parent d5a7cf39bb
commit 24c2866988
1 changed files with 5 additions and 1 deletions

View File

@ -25,7 +25,11 @@
"no-inner-declarations": 1,
"no-loop-func": 1,
"space-before-function-paren": [2, "never"],
"space-before-blocks": [2, "always"],
"space-before-keywords": [2, "always"],
"no-console": 0,
"comma-dangle": 0
"comma-dangle": 0,
"no-unexpected-multiline": 2,
"valid-jsdoc": 2
}
}