We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a46f02 commit 1d35870Copy full SHA for 1d35870
tests/valid/inline-table/newline.json
@@ -1,4 +1,12 @@
1
{
2
+ "no-newline-before-brace": {
3
+ "a": {"type": "integer", "value": "1"},
4
+ "b": {"type": "integer", "value": "2"}
5
+ },
6
+ "no-newline-before-brace-with-comma": {
7
8
9
10
"tbl-1": {
11
"1": {"type": "integer", "value": "2"},
12
"hello": {"type": "string", "value": "world"},
tests/valid/inline-table/newline.toml
@@ -22,3 +22,11 @@ tbl-2 = {
22
Hello
23
"""
24
}
25
+
26
+no-newline-before-brace = {
27
+a = 1,
28
+b = 2}
29
30
+no-newline-before-brace-with-comma = {
31
32
+b = 2,}
0 commit comments