Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Apr 4, 2024
1 parent c3a09f2 commit 88882bb
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
# 01: return 1
# 10: return 2
# 11: return 3
# bit 6~7: Reserved
# bit 6~7: Reserved
67 changes: 32 additions & 35 deletions sensing/livox/livox_tag_filter/schema/livox_tag_filter.schema.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,33 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Livox Tag Filter Parameters",
"type": "object",
"definitions": {
"livox_tag_filter": {
"type": "object",
"properties": {
"ignore_tags": {
"type": "array",
"description": "ignored tags (int array) (See the table in the readme file)",
"default": "[]"
}
},
"required": [
"ignore_tags"
],
"additionalProperties": false
}
},
"properties": {
"/**": {
"type": "object",
"properties": {
"ros__parameters": {
"$ref": "#/definitions/livox_tag_filter"
}
},
"required": ["ros__parameters"],
"additionalProperties": false
}
},
"required": ["/**"],
"additionalProperties": false
}

"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Livox Tag Filter Parameters",
"type": "object",
"definitions": {
"livox_tag_filter": {
"type": "object",
"properties": {
"ignore_tags": {
"type": "array",
"description": "ignored tags (int array) (See the table in the readme file)",
"default": "[]"
}
},
"required": ["ignore_tags"],
"additionalProperties": false
}
},
"properties": {
"/**": {
"type": "object",
"properties": {
"ros__parameters": {
"$ref": "#/definitions/livox_tag_filter"
}
},
"required": ["ros__parameters"],
"additionalProperties": false
}
},
"required": ["/**"],
"additionalProperties": false
}

0 comments on commit 88882bb

Please sign in to comment.