add rules "no-trailing-spaces" and "no-irregular-whitespace" for ESLint

This commit is contained in:
Rodrigo Ramírez Norambuena 2016-12-30 17:44:41 -03:00
parent 19d906c5e4
commit 809d932087

View File

@ -4,7 +4,9 @@
"quotes": ["error", "double"],
"max-len": ["error", 250],
"curly": "error",
"camelcase": ["error", {"properties": "never"}]
"camelcase": ["error", {"properties": "never"}],
"no-trailing-spaces": ["error"],
"no-irregular-whitespace": ["error"]
},
"env": {
"browser": true,