This updates rules for linting both JS and TS files in a way that is consistent with previous linting. Some rules for linting TS files were turned off or switched to warnings for now.
10 lines
276 B
YAML
10 lines
276 B
YAML
extends: [
|
|
"plugin:@typescript-eslint/recommended",
|
|
]
|
|
|
|
rules:
|
|
"@typescript-eslint/ban-ts-comment": off
|
|
"@typescript-eslint/ban-types": off
|
|
"@typescript-eslint/no-explicit-any": warn
|
|
"@typescript-eslint/no-unused-vars": warn
|
|
explicit-module-boundary-types: off
|