diff --git a/.eslintrc.json b/.eslintrc.json index 83309505..150a081d 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -4,11 +4,13 @@ "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, "node": true, "es6": true } -} \ No newline at end of file +}