diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-10-24 16:03:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-24 16:03:46 +0100 |
commit | 9c80ddaf931db79ab4cbdf2262fa5b3f4da1e67f (patch) | |
tree | 1996c7715c97f96542e0cc129c911b03687a9b05 /cli/schemas | |
parent | ef53ce3ac40e2c545397669e61e4e92423555d94 (diff) |
fix(config): schemas for lint rule and tag autocompletion (#26515)
Diffstat (limited to 'cli/schemas')
-rw-r--r-- | cli/schemas/config-file.v1.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index 4a6239f0d..db40e5062 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -291,7 +291,7 @@ "type": "array", "description": "List of tag names that will be run. Empty list disables all tags and will only use rules from `include`.", "items": { - "type": "string" + "$ref": "https://raw.githubusercontent.com/denoland/deno_lint/main/schemas/tags.v1.json" }, "minItems": 0, "uniqueItems": true @@ -300,7 +300,7 @@ "type": "array", "description": "List of rule names that will be excluded from configured tag sets. If the same rule is in `include` it will be run.", "items": { - "type": "string" + "$ref": "https://raw.githubusercontent.com/denoland/deno_lint/main/schemas/rules.v1.json" }, "minItems": 0, "uniqueItems": true @@ -309,7 +309,7 @@ "type": "array", "description": "List of rule names that will be run. Even if the same rule is in `exclude` it will be run.", "items": { - "type": "string" + "$ref": "https://raw.githubusercontent.com/denoland/deno_lint/main/schemas/rules.v1.json" }, "minItems": 0, "uniqueItems": true |