Skip to content

Commit

Permalink
feat(add-contain-value-rule): add fileThatContainValue schema definition
Browse files Browse the repository at this point in the history
  • Loading branch information
gafreax committed Nov 16, 2024
1 parent ac1afb1 commit 28d3b96
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions api/config_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,23 @@
"folder"
]
},
"fileThatContainValue": {
"type": "object",
"additionalProperties": false,
"properties": {
"kind": {
"type": "string",
"pattern": "^contain_value$"
},
"value": {
"type": "string"
}
},
"required": [
"kind",
"value"
]
},
"fileThatEndWith": {
"type": "object",
"additionalProperties": false,
Expand Down

0 comments on commit 28d3b96

Please sign in to comment.