Skip to content

Commit 49b5d2c

Browse files
chore(deps-dev): Bump eslint from 7.32.0 to 8.56.0 (#1136)
* chore(deps-dev): Bump eslint from 7.32.0 to 8.56.0 Bumps [eslint](https://github.com/eslint/eslint) from 7.32.0 to 8.56.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](eslint/eslint@v7.32.0...v8.56.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * deps: Fix ESLint config --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Benjamin Piouffle <[email protected]>
1 parent 305b8e5 commit 49b5d2c

File tree

4 files changed

+598
-550
lines changed

4 files changed

+598
-550
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ env:
44
jest: true
55
node: true
66
cypress/globals: true
7+
ignorePatterns:
8+
- 'node_modules/'
9+
- '/**/node_modules/'
10+
- '**/node_modules/'
711
extends:
812
- 'eslint:recommended'
913
- 'plugin:react/recommended'
10-
parser: babel-eslint
14+
parser: '@babel/eslint-parser'
1115
parserOptions:
1216
ecmaFeatures:
1317
experimentalObjectRestSpread: true
@@ -29,7 +33,6 @@ rules:
2933
quotes: ['warn', 'single', { avoidEscape: true }]
3034
semi: ['error', 'never']
3135
import/first: ['warn']
32-
import/no-named-as-default: ['warn']
3336
simple-import-sort/imports: ['error']
3437
no-else-return: off
3538
no-trailing-spaces: ['warn']

0 commit comments

Comments
 (0)