Skip to content

Commit d9245d9

Browse files
committed
syntax: Add the empty rules: [] to the files currently "missing" them
1 parent 3fd2fe3 commit d9245d9

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

runtime/syntax/meson.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,13 @@ rules:
3434
- comment:
3535
start: "#"
3636
end: "$"
37+
rules: []
3738

3839
# multiline strings do not support escape sequences
3940
- constant.string:
4041
start: "'''"
4142
end: "'''"
43+
rules: []
4244

4345
- constant.string:
4446
start: "'"

runtime/syntax/nftables.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ rules:
1515
- constant.string:
1616
start: "\""
1717
end: "\""
18+
rules: []
1819
# Integer Constants
1920
- constant.number: "\\b([0-9]+)\\b"
2021
- constant.number: "\\b(0x[0-9a-fA-F]+)\\b"

runtime/syntax/ruby.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ rules:
2525
- constant:
2626
start: "[$]([!@&`'+~=/\\\\,;.<>*$?:\"_]|-[A-Za-z0-9_]|[0-9]+)"
2727
end: "\\B|\\b"
28+
rules: []
2829
# Ruby "Symbols"
2930
- constant: "(i?)([ ]|^):[0-9A-Z_]+\\b"
3031
- constant: "\\b(__FILE__|__LINE__)\\b"

0 commit comments

Comments
 (0)