feat: provide a schema file for dartgun.toml
This commit is contained in:
parent
132a586f36
commit
6c7922d905
1 changed files with 34 additions and 0 deletions
34
dartgun.schema.json
Normal file
34
dartgun.schema.json
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"dots": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"location": {
|
||||
"type": "string"
|
||||
},
|
||||
"destination": {
|
||||
"type": "string"
|
||||
},
|
||||
"strategy": {
|
||||
"type": "string",
|
||||
"enum": ["symlink"]
|
||||
},
|
||||
"identifiers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": ["location", "destination", "identifiers"],
|
||||
"additionalProperties": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": ["dots"],
|
||||
"additionalProperties": false
|
||||
}
|
Loading…
Reference in a new issue