Skip to content

Commit c39a5b6

Browse files
committed
Fix(ESLint): Unexpected undefined config at user-defined index 3
1 parent 62299a7 commit c39a5b6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/eslint-config/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
const base = require('./configs/base')
22
const stylistic = require('./configs/stylistic')
33
const typescript = require('./configs/typescript')
4+
const react = require('./configs/react')
45

56
/** @type {import('eslint').Linter.LegacyConfig} */
67
module.exports = {
78
configs: {
89
base,
910
stylistic,
10-
typescript
11+
typescript,
12+
react
1113
},
1214
env: {
1315
node: true,

0 commit comments

Comments
 (0)