{ "env": { "browser": true, "es2021": true }, "extends": [ "standard-with-typescript", "plugin:react/recommended", "plugin:react/jsx-runtime" ], "parserOptions": { "ecmaVersion": "latest", "sourceType": "module", "project": ["tsconfig.json"] }, "plugins": [ "react", "simple-import-sort" ], "rules": { "simple-import-sort/imports": "warn", "@typescript-eslint/no-unused-vars": "warn", "no-trailing-spaces": "warn", "no-multiple-empty-lines": "warn", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/semi": "off", "@typescript-eslint/strict-boolean-expressions": "off", "@typescript-eslint/space-before-function-paren": "off", "@typescript-eslint/indent": "off", "object-shorthand": "off" } }