diff --git a/index.js b/index.js index 4a6558e..5ad888a 100644 --- a/index.js +++ b/index.js @@ -136,9 +136,9 @@ module.exports = { "@typescript-eslint/no-unnecessary-type-assertion": "error", "@typescript-eslint/no-unnecessary-type-constraint": "error", "@typescript-eslint/no-unsafe-argument": "error", - "@typescript-eslint/no-unsafe-assignment": "error", - "@typescript-eslint/no-unsafe-call": "error", - "@typescript-eslint/no-unsafe-member-access": "error", + "@typescript-eslint/no-unsafe-assignment": "off", + "@typescript-eslint/no-unsafe-call": "off", + "@typescript-eslint/no-unsafe-member-access": "off", "@typescript-eslint/no-unsafe-return": "error", "@typescript-eslint/no-unused-expressions": [ "error", @@ -257,7 +257,16 @@ module.exports = { "import/dynamic-import-chunkname": "error", "import/export": "error", "import/exports-last": "error", - "import/extensions": "error", + "import/extensions": [ + "error", + "always", + { + js: "never", + jsx: "never", + ts: "never", + tsx: "never", + }, + ], "import/first": "error", "import/group-exports": "off", "import/max-dependencies": "off", @@ -737,7 +746,7 @@ module.exports = { "react/prefer-read-only-props": "error", "react/prefer-stateless-function": "error", "react/prop-types": "off", - "react/react-in-jsx-scope": "error", + "react/react-in-jsx-scope": "off", "react/require-default-props": "off", "react/require-optimization": "off", "react/require-render-return": "error",