{ "env": { "browser": true, "es2021": true }, "extends": [], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 2019, "sourceType": "module" }, "plugins": [ "@typescript-eslint" ], "rules": { "indent": [ "error", 4, { "SwitchCase": 1 } ], "quotes": [ "error", "single" ], "semi": [ "error", "always" ], "@typescript-eslint/no-empty-function": [ "error", { "allow": [ "arrowFunctions", "methods" ] } ], "@typescript-eslint/no-unused-vars": [ "off" ], "max-len": [ 2, 130, { "ignoreTrailingComments": true }, { "ignoreComments": true } ] } }