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
I'm using version 1.1.0-beta006, and I have below settings:
"settings": {
"documentationRules": {
"companyName": "Foo",
"copyrightText": "\r\nCopyright (c) {companyName} Corporation. All rights reserved.\r\n",
"xmlHeader": false
}
What I want to achieve is that:
//<- no spaces here// Copyright (c) Foo Corporation. All rights reserved.//<- no spaces here
But the generated header contains an extra space in the 1st and 3rd line, like this:
// <- 1 space here// Copyright (c) Foo Corporation. All rights reserved.// <- 1 space here
And it's violating SA1028, if I removed the extra space manually, it's violating SA1120.
How can I achieve the result I expected, without turning off SA1028 and SA1120?
The text was updated successfully, but these errors were encountered:
I'm using version
1.1.0-beta006
, and I have below settings:What I want to achieve is that:
But the generated header contains an extra space in the 1st and 3rd line, like this:
And it's violating SA1028, if I removed the extra space manually, it's violating SA1120.
How can I achieve the result I expected, without turning off SA1028 and SA1120?
The text was updated successfully, but these errors were encountered: