Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions checkstyle.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"type": "AvoidStarImport"
},
{
"comment": "Testing!",
"type": "BlockBreakingConditional"
},
{
Expand Down
9 changes: 7 additions & 2 deletions resources/checkstyle-excludes-schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/schema#",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"definitions": {
"ExcludeFilterList": {
"description": "list of path filters, e.g.\n\t- full type names\n\t- names of individual folder or subfolders\n\t- partial folder or type names\n\n\teach line can have an additional range specification:\n\t- \":<linenumber>\" = only matches a specific line number - valid line number start at 1\n\t- \":<start>-<end>\" = matches line numbers from <start> to <end> (including both)\n\t- \":<identifier>\" = matches any line or block that has <identifier> name (Haxe keywords currently unsupported)",
Expand Down Expand Up @@ -357,7 +357,12 @@
"propertyOrder": 26
}
},
"type": "object"
"type": "object",
"patternProperties": {
"^comment$": {
"type": "string"
}
}
}
},
"$ref": "#/definitions/ExcludeConfig",
Expand Down
Loading