Skip to content

Commit

Permalink
Fix(ESLint): Unexpected undefined config at user-defined index 3
Browse files Browse the repository at this point in the history
  • Loading branch information
1aron committed Nov 27, 2024
1 parent 62299a7 commit c39a5b6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/eslint-config/index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
const base = require('./configs/base')
const stylistic = require('./configs/stylistic')
const typescript = require('./configs/typescript')
const react = require('./configs/react')

/** @type {import('eslint').Linter.LegacyConfig} */
module.exports = {
configs: {
base,
stylistic,
typescript
typescript,
react
},
env: {
node: true,
Expand Down

0 comments on commit c39a5b6

Please sign in to comment.