diff --git a/.eslintrc.js b/.eslintrc.js index cdd673fd7..9c53aacc8 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,22 +1,8 @@ module.exports = { - "root": true, - "extends": "standard", - "env": { - "node": true + root: true, + extends: ['standard'], + env: { + node: true }, - "rules": { - // at some point all of these should return to their default "error" state - // but right now, this is not a good choice, because too many places are - // wrong. - "import/first": ["warn"], - "indent": ["warn"], - "no-console": ["warn"], - "no-multiple-empty-lines": ["warn"], - "no-multi-spaces": ["warn"], - "object-curly-spacing": ["warn"], - "one-var": ["warn"], - "quotes": ["warn"], - "semi": ["warn"], - "space-infix-ops": ["warn"] - } -}; + rules: {} +}