vbmade2000 commented on issue #7556: URL: https://github.com/apache/skywalking/issues/7556#issuecomment-2574985920
I am also getting an extra empty line added after the `content` received from `.licenserc.yaml`. Code before running fix: ``` // Copyright (c) 2020 XYZ. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. use crate::Error; ``` Notice that there is only one line between Copyright notice and `use crate::Error;` error. Code after applying fix: ``` // Copyright (c) 2025 XYZ. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. use crate::Error; ``` Notice extra newline between copyright notice and `use crate::Error;`. Is there a way to avoid adding it? I used `go install github.com/apache/skywalking-eyes/cmd/license-eye@latest` for installation. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
