debian-image-builder-frontend/.eslintrc-typescript.yml
regexowl 2687312f16 ESLint: Update rules after removing eslint-config-react-app
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.
2023-11-08 14:15:17 +01:00

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