{ "env": { "browser": true, "es2021": true }, "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], "parser": "@typescript-eslint/parser", "rules": { "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-empty-function": "off", "json/*": ["error", "allowComments"], "no-empty": "off", "prefer-const": "off", "linebreak-style": ["error", "unix"], "indent": ["error", 2], "no-var": "error", "no-useless-rename": "error", "quotes": [ "error", "single", { "allowTemplateLiterals": true } ] }, "parserOptions": { "ecmaVersion": 12, "sourceType": "module" }, "plugins": ["@typescript-eslint", "json"] }