monaco-yaml/.eslintrc.yaml
Remco Haszing 9739d143d3
Apply various stylistic fixes
- ESLint config `remcohaszing/typechecking` is extended.
- Various previously disabled ESLint rules have now been enabled.
- Various `any` types have been fixed.
- Removed useless type check of diagnostic code.
- The diagnostics adapter listener has been turned into an actual map.
2021-09-02 22:11:00 +02:00

18 lines
460 B
YAML

extends:
- remcohaszing
- remcohaszing/typechecking
rules:
no-restricted-globals: off
'@typescript-eslint/no-misused-promises': off
'@typescript-eslint/no-shadow': off
'@typescript-eslint/no-unnecessary-condition': off
import/no-extraneous-dependencies: off
import/no-unresolved: off
jsdoc/require-jsdoc: off
node/no-extraneous-import: off
node/no-unsupported-features/es-syntax: off
node/no-unsupported-features/node-builtins: off