mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-05-19 04:08:48 +00:00
- 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.
18 lines
460 B
YAML
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
|