Skip to content

Commit 05e0080

Browse files
renovate[bot]renovate-botaurelien-reeves
authored
chore(deps): update eslint packages (major) (#1840)
* chore(deps): update eslint packages * Update eslint configuration - remove plugins which prevent upgrading eslint - update the configuration based on the one from cucumber-expression - update a piece of code to make linting happy Note: some rules have been deactivated to make the update of eslint possible without breaking our build. Those rules may be deactivated later as part of dedicated pull requests. * Activate eslint-plugin-simple-import-sort * Add simple-import-sort to dependency-lint ignore list * Revert "Add simple-import-sort to dependency-lint ignore list" This reverts commit 1bd2f32. * Revert "Activate eslint-plugin-simple-import-sort" This reverts commit a0075e7. * Remove eslint-plugin-simple-import-sort Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: aurelien-reeves <[email protected]>
1 parent 50710b6 commit 05e0080

File tree

4 files changed

+2338
-2035
lines changed

4 files changed

+2338
-2035
lines changed

.eslintrc.yml

+15-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
11
extends:
2-
- standard-with-typescript
2+
- "eslint:recommended"
3+
- "plugin:import/typescript"
4+
- "plugin:@typescript-eslint/eslint-recommended"
5+
- "plugin:@typescript-eslint/recommended"
36
- "plugin:prettier/recommended"
7+
parser: "@typescript-eslint/parser"
48
parserOptions:
59
project: './tsconfig.json'
10+
plugins:
11+
- import
12+
- node
13+
- "@typescript-eslint"
614
rules:
715
prettier/prettier:
816
- error
917
- trailingComma: es5
1018
singleQuote: true
1119
semi: false
1220
# requires strictNullChecks compiler option, produces many errors with messages objects
13-
'@typescript-eslint/strict-boolean-expressions': off
21+
"@typescript-eslint/strict-boolean-expressions": off
22+
"@typescript-eslint/no-explicit-any": off
23+
"@typescript-eslint/no-inferrable-types": off
24+
"@typescript-eslint/no-empty-function": off
25+
"@typescript-eslint/ban-types": off
26+
"@typescript-eslint/no-unused-vars": off

0 commit comments

Comments
 (0)