You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This sniff checks the alignment of assignment operators. If there are multiple adjacent assignments, it checks that the equals signs of each assignment are aligned.
217
217
@@ -471,10 +471,10 @@ If the `error` property is set to `false`, a warning will be thrown for violatio
471
471
472
472
### Generic.Strings.UnnecessaryStringConcat
473
473
474
-
Property Name | Type | Default | Available Since
475
-
-------------- | ---- | ------- | ---------------
476
-
allowMultiline | bool | false | 2.3.4
477
-
error | bool | true | -
474
+
Property Name | Type | Default | Available Since | Removed In
This sniff checks that two strings using the same quoting style are not concatenated. Sometimes long strings are broken over multiple lines to work within a maximum line length, but this sniff will generate an error for these cases by default. Setting the `allowMultiline` property to `true` will get the sniff to allow string concatenation if the string covers multiple lines.
0 commit comments