Skip to content

Commit

Permalink
improve imports
Browse files Browse the repository at this point in the history
  • Loading branch information
joephela committed Jul 12, 2024
1 parent f6d5b88 commit 8150fdf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions packages/eslint-config-widen/src/typescript.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import tseslint from 'typescript-eslint'
import { configs, parser, plugin } from 'typescript-eslint'

export default [
...tseslint.configs.recommended,
...configs.recommended,
{
files: ['*.ts', '*.tsx'],
languageOptions: {
parser: tseslint.parser,
parser: parser,
},
plugins: {
'@typescript-eslint': plugin,
},
rules: {
'@typescript-eslint/camelcase': 'off',
Expand Down

0 comments on commit 8150fdf

Please sign in to comment.