Skip to content

Commit

Permalink
feat: update tombi.toml schema. (#4487)
Browse files Browse the repository at this point in the history
* feat: update tombi.toml schema.

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
yassun7010 and pre-commit-ci[bot] authored Feb 24, 2025
1 parent 0761947 commit ed6f6e7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/schemas/json/tombi.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,24 @@
],
"default": "v1.0.0"
},
"include": {
"title": "File patterns to include.",
"description": "The file match pattern to include in formatting and linting.\n Supports glob pattern.",
"type": ["array", "null"],
"items": {
"type": "string"
},
"minItems": 1
},
"exclude": {
"title": "File patterns to exclude.",
"description": "The file match pattern to exclude from formatting and linting.\n Supports glob pattern.",
"type": ["array", "null"],
"items": {
"type": "string"
},
"minItems": 1
},
"lint": {
"title": "Linter options.",
"anyOf": [
Expand Down

0 comments on commit ed6f6e7

Please sign in to comment.