0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-12 16:59:32 -05:00

feat(unstable): add lint.plugins to config schema (#27982)

Not sure what our handling of unstable properties in `deno.json` is.
This PR adds it to the config schema.

---------

Signed-off-by: Marvin Hagemeister <marvinhagemeister50@gmail.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
Marvin Hagemeister 2025-02-06 09:00:23 +01:00 committed by GitHub
parent 4a2b8fc22d
commit df02af27fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -292,6 +292,13 @@
"type": "string"
}
},
"plugins": {
"type": "array",
"description": "UNSTABLE: List of plugins to load. These can be paths, npm or jsr specifiers",
"items": {
"type": "string"
}
},
"rules": {
"type": "object",
"properties": {