Skip to content

Commit db19c36

Browse files
committedMar 4, 2024··
fix: ignore import_map.json for filename-case
1 parent d620c50 commit db19c36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/configs/unicorn.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const unicorn: FlatESLintConfigItem[] = [
1717
'error',
1818
{
1919
cases: { kebabCase: true, pascalCase: true },
20-
ignore: [/^[A-Z]+\..*$/],
20+
ignore: [/^[A-Z]+\..*$/, /import_map\.json/],
2121
},
2222
],
2323
'unicorn/new-for-builtins': 'error',

0 commit comments

Comments
 (0)
Please sign in to comment.