Skip to content

Commit 6354035

Browse files
authored
leftcurly.md - Change string "true" to boolean true (#13)
previous code caused a warning
1 parent 0f34e90 commit 6354035

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

haxe-checkstyle/leftcurly.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Checks for the placement of left curly braces (`{`) for code blocks. The policy
1313
"props": {
1414
"severity": "WARNING",
1515
"option": "eol",
16-
"ignoreEmptySingleline": "true",
16+
"ignoreEmptySingleline": true,
1717
"tokens": [
1818
"CLASS_DEF",
1919
"ENUM_DEF",
@@ -91,4 +91,4 @@ With `ignoreEmptySingleline` set to `false`
9191
public function donothing() {}
9292
```
9393

94-
{{site.data.alerts.error}} Left curly should be at EOL (only linebreak or comment after curly) {{site.data.alerts.end}}
94+
{{site.data.alerts.error}} Left curly should be at EOL (only linebreak or comment after curly) {{site.data.alerts.end}}

0 commit comments

Comments
 (0)