Skip to content

Commit

Permalink
fix: invalid name in eslint v8 (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sysix authored Oct 21, 2024
1 parent fe8a718 commit ed660a4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,19 @@ const allRules: UnionToIntersection<AllRules> = Object.assign(
export default {
configs: {
recommended: {
name: 'oxlint ignore rules recommended',
plugins: ['oxlint'],
rules: ruleMapsByCategory.correctnessRules,
},
all: {
name: 'oxlint ignore rules all',
plugins: ['oxlint'],
rules: allRules,
},
'flat/all': {
name: 'oxlint ignore rules all',
name: 'oxlint/all',
rules: allRules,
},
'flat/recommended': {
name: 'oxlint ignore rules recommended',
name: 'oxlint/recommended',
rules: ruleMapsByCategory.correctnessRules,
},
...configByScope,
Expand Down

0 comments on commit ed660a4

Please sign in to comment.