Skip to content

Commit

Permalink
fix: allow dots in variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Mar 24, 2024
1 parent 9021078 commit 64af575
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion schemas/merged-raw.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"vars": {
"type": "object",
"patternProperties": {
"^([a-zA-Z_-]+)": {
"^([a-zA-Z\\._-]+)": {
"type": "object",
"required": ["name", "ids"],
"properties": {
Expand Down
4 changes: 2 additions & 2 deletions schemas/merged-slim.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"vars": {
"type": "object",
"patternProperties": {
"^([a-zA-Z_-]+)": {
"^([a-zA-Z\\._-]+)": {
"type": "object",
"required": ["name", "ids"],
"properties": {
Expand Down Expand Up @@ -36,7 +36,7 @@
"additionalItems": false,
"items": {
"type": "string",
"pattern": "^[0-9]+#[A-Za-z0-9_-]*$",
"pattern": "^[0-9]+#[A-Za-z0-9\\._-]*$",
"minLength": 2
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/merged-ultraslim.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"$id": "/properties/vars",
"type": "object",
"patternProperties": {
"^([a-zA-Z_-]+)": {
"^([a-zA-Z\\._-]+)": {
"type": "object",
"properties": {
"t": {
Expand Down

0 comments on commit 64af575

Please sign in to comment.