Skip to content

Commit

Permalink
chore: downgrade ESLint to v8
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Apr 19, 2024
1 parent 9cd11bd commit 106cbdf
Show file tree
Hide file tree
Showing 3 changed files with 131 additions and 176 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@antfu/eslint-config": "^2.15.0",
"@types/node": "^20.12.7",
"bumpp": "^9.4.0",
"eslint": "^9.0.0",
"eslint": "^8.57.0",
"happy-dom": "^14.7.1",
"typescript": "^5.4.5",
"unbuild": "^3.0.0-rc.1",
Expand Down
23 changes: 4 additions & 19 deletions packages/solid/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,6 @@
import solidPlugin from 'eslint-plugin-solid'
import * as tsParser from '@typescript-eslint/parser'
import antfu from '@antfu/eslint-config'

export default await antfu(
{
vue: false,
},
{
files: ['**/*.ts', '**/*.tsx'],
plugins: {
solid: solidPlugin,
},
languageOptions: {
parser: tsParser,
},
rules: {
...solidPlugin.configs.recommended.rules,
},
},
)
export default await antfu({
vue: false,
solid: true,
})
Loading

0 comments on commit 106cbdf

Please sign in to comment.