@@ -15,7 +15,7 @@ export async function createESLintConfig(options: Options) {
15
15
! options . excludeLintPackageJson &&
16
16
`import packageJson from "eslint-plugin-package-json/configs/recommended";` ,
17
17
! options . excludeLintPerfectionist &&
18
- `import perfectionistNatural from "eslint-plugin-perfectionist/configs/recommended-natural ";` ,
18
+ `import perfectionist from "eslint-plugin-perfectionist";` ,
19
19
! options . excludeLintRegex &&
20
20
`import * as regexp from "eslint-plugin-regexp";` ,
21
21
! options . excludeTests && `import vitest from "eslint-plugin-vitest";` ,
@@ -35,7 +35,8 @@ export async function createESLintConfig(options: Options) {
35
35
` jsdoc.configs["flat/recommended-typescript-error"],` ,
36
36
` n.configs["flat/recommended"],` ,
37
37
! options . excludeLintPackageJson && ` packageJson,` ,
38
- ! options . excludeLintPerfectionist && ` perfectionistNatural,` ,
38
+ ! options . excludeLintPerfectionist &&
39
+ ` perfectionist.configs["recommended-natural"],` ,
39
40
! options . excludeLintRegex && ` regexp.configs["flat/recommended"],` ,
40
41
] . filter ( Boolean ) ;
41
42
@@ -122,7 +123,7 @@ export default tseslint.config(
122
123
"error",
123
124
{
124
125
order: "asc",
125
- "partition-by-comment" : true,
126
+ partitionByComment : true,
126
127
type: "natural",
127
128
},
128
129
],`
0 commit comments