Skip to content

Commit

Permalink
Check for integers in first columns
Browse files Browse the repository at this point in the history
  • Loading branch information
bramstroker committed Sep 20, 2022
1 parent 9bff228 commit 59f199a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/lut_validator/rules/brightness.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"properties": {
"bri": {
"type": "number",
"type": "integer",
"minimum": 0,
"maximum": 255
},
Expand Down
4 changes: 2 additions & 2 deletions .github/scripts/lut_validator/rules/color_temp.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"properties": {
"bri": {
"type": "number",
"type": "integer",
"minimum": 0,
"maximum": 255
},
"mired": {
"type": "number",
"type": "integer",
"minimum": 0,
"maximum": 670
},
Expand Down
6 changes: 3 additions & 3 deletions .github/scripts/lut_validator/rules/hs.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"properties": {
"bri": {
"type": "number",
"type": "integer",
"minimum": 0,
"maximum": 255
},
"hue": {
"type": "number",
"type": "integer",
"minimum": 0,
"maximum": 65535
},
"sat": {
"type": "number",
"type": "integer",
"minimum": 0,
"maximum": 255
},
Expand Down

0 comments on commit 59f199a

Please sign in to comment.