Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deps #3533

Merged
merged 1 commit into from Apr 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 7 additions & 5 deletions .eslintrc.yml
@@ -1,9 +1,8 @@
parserOptions:
sourceType: script
ecmaVersion: 2020
env:
es6: true
node: true
es2022: true
reportUnusedDisableDirectives: true
plugins:
- internal-rules
Expand Down Expand Up @@ -77,7 +76,7 @@ rules:
node/prefer-promises/fs: off

##############################################################################
# `eslint-plugin-import` rule list based on `v2.25.x`
# `eslint-plugin-import` rule list based on `v2.26.x`
##############################################################################

# Static analysis
Expand Down Expand Up @@ -174,7 +173,7 @@ rules:
simple-import-sort/exports: off # TODO

##############################################################################
# ESLint builtin rules list based on `v8.8.x`
# ESLint builtin rules list based on `v8.13.x`
##############################################################################

# Possible Errors
Expand Down Expand Up @@ -487,7 +486,7 @@ overrides:
tsdoc/syntax: error

##########################################################################
# `@typescript-eslint/eslint-plugin` rule list based on `v5.10.x`
# `@typescript-eslint/eslint-plugin` rule list based on `v5.19.x`
##########################################################################

# Supported Rules
Expand Down Expand Up @@ -532,6 +531,7 @@ overrides:
'@typescript-eslint/no-non-null-asserted-optional-chain': error
'@typescript-eslint/no-non-null-assertion': error
'@typescript-eslint/no-parameter-properties': error
'@typescript-eslint/no-redundant-type-constituents': error
'@typescript-eslint/no-invalid-void-type': error
'@typescript-eslint/no-require-imports': error
'@typescript-eslint/no-this-alias': error
Expand All @@ -547,6 +547,7 @@ overrides:
'@typescript-eslint/no-unsafe-call': off # TODO consider
'@typescript-eslint/no-unsafe-member-access': off # TODO consider
'@typescript-eslint/no-unsafe-return': off # TODO consider
'@typescript-eslint/no-useless-empty-export': error
'@typescript-eslint/no-var-requires': error
'@typescript-eslint/non-nullable-type-assertion-style': off #TODO temporarily disabled
'@typescript-eslint/prefer-as-const': error
Expand Down Expand Up @@ -647,6 +648,7 @@ overrides:
'@typescript-eslint/no-extra-parens': off
'@typescript-eslint/no-extra-semi': off
'@typescript-eslint/semi': off
'@typescript-eslint/space-before-blocks': off
'@typescript-eslint/space-before-function-paren': off
'@typescript-eslint/space-infix-ops': off
'@typescript-eslint/type-annotation-spacing': off
Expand Down
3 changes: 2 additions & 1 deletion integrationTests/ts/package.json
Expand Up @@ -10,6 +10,7 @@
"typescript-4.2": "npm:typescript@4.2.x",
"typescript-4.3": "npm:typescript@4.3.x",
"typescript-4.4": "npm:typescript@4.4.x",
"typescript-4.5": "npm:typescript@4.5.x"
"typescript-4.5": "npm:typescript@4.5.x",
"typescript-4.6": "npm:typescript@4.6.x"
}
}