{ "env": { "es6": true, "node": true }, "extends": [ "airbnb-typescript/base" ], "parserOptions": { "ecmaVersion": 11, "project": "./tsconfig.json" }, "rules": { "indent": ["error", 2], "linebreak-style": ["error", "unix"], "quotes": ["error", "single"], "semi": ["error", "always"], "import/prefer-default-export": "off", "import/no-default-export": "error", "class-methods-use-this": "off", "@typescript-eslint/indent": ["error", 2, { "SwitchCase": 0 }] } }