summaryrefslogtreecommitdiff
path: root/cli/schemas
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2024-10-24 16:03:46 +0100
committerGitHub <noreply@github.com>2024-10-24 16:03:46 +0100
commit9c80ddaf931db79ab4cbdf2262fa5b3f4da1e67f (patch)
tree1996c7715c97f96542e0cc129c911b03687a9b05 /cli/schemas
parentef53ce3ac40e2c545397669e61e4e92423555d94 (diff)
fix(config): schemas for lint rule and tag autocompletion (#26515)
Diffstat (limited to 'cli/schemas')
-rw-r--r--cli/schemas/config-file.v1.json6
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