Skip to content

Commit 7a662e7

Browse files
Loop on TypeScript configuration override
In GH-32 [1] the `@arcticicestudio/eslint-config-typescript` package migrated to the latest plugin versions and added the `override` field [1] to its index to simplify the usage for consumers by removing the need to explicitly define it per project. Unfortunately this resulted in a crash loop when doing so and also blocks users from overriding single rules based on the project needs. To fix this problem, the `override` field has been removed again, leaving it up to the user to define and customize the ESLint configuration for TypeScript to fit the project needs. [1]: #32 [2]: https://github.com/arcticicestudio/styleguide-javascript/blob/ab59f71f/packages/%40arcticicestudio/eslint-config-typescript/index.js#L31-L36 Co-authored-by: Sven Greb <[email protected]> GH-50
1 parent 90953d7 commit 7a662e7

File tree

1 file changed

+0
-6
lines changed
  • packages/@arcticicestudio/eslint-config-typescript

1 file changed

+0
-6
lines changed

packages/@arcticicestudio/eslint-config-typescript/index.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,4 @@ module.exports = {
2828
"./rules/import/settings.js",
2929
"./rules/import/style.js",
3030
].map(require.resolve),
31-
overrides: [
32-
{
33-
files: ["*.ts", "*.tsx"],
34-
extends: ["@arcticicestudio/eslint-config-typescript", "@arcticicestudio/eslint-config-typescript/prettier"],
35-
},
36-
],
3731
};

0 commit comments

Comments
 (0)