Skip to content

Commit 42a90c0

Browse files
committedMay 26, 2024
feat: use antfu/curly to replace curly
1 parent 56cde3f commit 42a90c0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
 

‎src/configs/stylistic.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ export async function stylistic(
5656
curly: ['error', 'all'],
5757
}
5858
: {
59+
'antfu/curly': 'error',
5960
'antfu/if-newline': 'error',
6061
'antfu/top-level-function': 'error',
61-
'curly': ['error', 'multi-or-nest', 'consistent'],
6262
}
6363
),
6464

‎src/factory.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,9 @@ export function antfu(
139139
perfectionist(),
140140
)
141141

142-
if (enableVue)
142+
if (enableVue) {
143143
componentExts.push('vue')
144+
}
144145

145146
if (enableTypeScript) {
146147
configs.push(typescript({
@@ -158,8 +159,9 @@ export function antfu(
158159
}))
159160
}
160161

161-
if (enableRegexp)
162+
if (enableRegexp) {
162163
configs.push(regexp(typeof enableRegexp === 'boolean' ? {} : enableRegexp))
164+
}
163165

164166
if (options.test ?? true) {
165167
configs.push(test({

0 commit comments

Comments
 (0)
Please sign in to comment.