We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1455d73 commit 076bc75Copy full SHA for 076bc75
eslint.config.ts
@@ -1,3 +1,3 @@
1
-import { dmzj } from './src'
+import dmzj from './src'
2
3
export default dmzj()
src/index.ts
@@ -25,7 +25,7 @@ const dmzjRules: TypedFlatConfigItem[] = [
25
},
26
]
27
28
-export function dmzj(...params: Parameters<typeof antfu>): FlatConfigComposer<TypedFlatConfigItem, ConfigNames> {
+export default function (...params: Parameters<typeof antfu>): FlatConfigComposer<TypedFlatConfigItem, ConfigNames> {
29
if (params.length === 0) {
30
return antfu({}, dmzjRules)
31
}
0 commit comments