Skip to content

Commit

Permalink
feat(eslint-config): remove base config from extends as its handled i…
Browse files Browse the repository at this point in the history
…n the entrypoint
  • Loading branch information
rozsival committed Oct 26, 2023
1 parent 144e5f2 commit 9d679c7
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/eslint-config/src/react/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@ import { overrides } from './overrides';
import { rules } from './rules';

export const config = {
extends: [
'@apitree',
'plugin:react-hooks/recommended',
'plugin:react/jsx-runtime',
],
extends: ['plugin:react-hooks/recommended', 'plugin:react/jsx-runtime'],
plugins: ['react', 'react-hooks'],
rules,
overrides,
Expand Down

0 comments on commit 9d679c7

Please sign in to comment.