Enable key-spacing and no-multi-spaces (babel/eslint-config-babel#18)

Fixes babel/eslint-config-babel#16
This commit is contained in:
Daniel Tschinder 2017-02-20 17:14:45 +01:00
parent 773c340514
commit 1ce807d5de

View File

@ -27,7 +27,7 @@ module.exports = {
} }
}], }],
"linebreak-style": ["error", "unix"], "linebreak-style": ["error", "unix"],
"key-spacing": "off", "key-spacing": "error",
"keyword-spacing": "error", "keyword-spacing": "error",
"max-len": ["error", 110, 2], "max-len": ["error", 110, 2],
"new-cap": "off", "new-cap": "off",
@ -40,7 +40,7 @@ module.exports = {
"no-empty": "off", "no-empty": "off",
"no-fallthrough": "off", "no-fallthrough": "off",
"no-inner-declarations": "off", "no-inner-declarations": "off",
"no-multi-spaces": "off", "no-multi-spaces": "error",
"no-labels": "off", "no-labels": "off",
"no-loop-func": "off", "no-loop-func": "off",
"no-process-exit": "off", "no-process-exit": "off",