diff --git a/.eslintrc.js b/.eslintrc.js index c0410e5..b216e95 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -24,13 +24,13 @@ module.exports = { "@typescript-eslint/quotes": "off", camelcase: "off", "comma-dangle": "off", - "no-extra-semi": 2, - "no-irregular-whitespace": 2, - "no-lonely-if": 2, - "no-multi-spaces": 2, - "no-multiple-empty-lines": 2, - "no-trailing-spaces": 2, - "no-unexpected-multiline": 2, + "no-extra-semi": "error", + "no-irregular-whitespace": "error", + "no-lonely-if": "error", + "no-multi-spaces": "error", + "no-multiple-empty-lines": "error", + "no-trailing-spaces": "error", + "no-unexpected-multiline": "error", "no-unreachable": "error", "object-curly-spacing": ["error", "always"], semi: ["warn", "never"],