Skip to content

Commit f290fc3

Browse files
committed
fix(eslint-config): disable additional perfectionist sorting rules in ESLint configuration
1 parent dffbedf commit f290fc3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/eslint-config/src/config/plugins/perfectionist.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,14 @@ export default createConfig<OptionsFiles & OptionsOverrides & OptionsPackageJson
3030

3131
// Disabled because of sort-imports
3232
"perfectionist/sort-imports": "off",
33+
// Disabled because of import/exports-last
34+
"perfectionist/sort-modules": "off",
35+
3336
// Disabled because of simple-import-sort/exports
3437
"perfectionist/sort-named-exports": "off",
35-
3638
// Disabled because of simple-import-sort/imports
3739
"perfectionist/sort-named-imports": "off",
40+
3841
// Disabled because of @typescript-eslint/sort-type-constituents
3942
"perfectionist/sort-union-types": "off",
4043

0 commit comments

Comments
 (0)