File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8,14 +8,14 @@ const require = createRequire(import.meta.url)
8
8
9
9
const { defineConfig : defineConfig1 } = require ( './src/index.ts' )
10
10
11
- const useBuild = true
11
+ const useBuild = false
12
12
13
13
/** @type {import('./src/index.ts').defineConfig } */
14
14
const defineConfig = useBuild ? defineConfig2 : defineConfig1
15
15
export default defineConfig (
16
16
{
17
17
vue : true ,
18
- // react: true ,
18
+ react : false ,
19
19
typescript : true ,
20
20
ignores : [ 'fixtures' , '_fixtures' ] ,
21
21
} ,
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import type {
15
15
TypeScriptRules ,
16
16
UnicornRules ,
17
17
VitestRules ,
18
+ VueRules ,
18
19
} from '@antfu/eslint-define-config'
19
20
import type { Linter } from 'eslint'
20
21
import type { Rules as AntfuRules } from 'eslint-plugin-antfu'
@@ -46,6 +47,7 @@ export type EslintFlatRules = WrapRuleConfig<
46
47
ImportRules &
47
48
EslintRules &
48
49
JsoncRules &
50
+ VueRules &
49
51
UnicornRules &
50
52
EslintCommentsRules & {
51
53
// TODO: TOML rules
You can’t perform that action at this time.
0 commit comments