Skip to content

Commit

Permalink
chore: revert solid linting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Apr 19, 2024
1 parent 407a399 commit 9cd11bd
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion packages/solid/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
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,
solid: true,
},
{
files: ['**/*.ts', '**/*.tsx'],
plugins: {
solid: solidPlugin,
},
languageOptions: {
parser: tsParser,
},
rules: {
...solidPlugin.configs.recommended.rules,
},
},
)

0 comments on commit 9cd11bd

Please sign in to comment.