mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-28 22:28:43 -04:00
* Unknown linter breaks //nolint * Testing if nolint directive for unknown linter silences violation on the same line
5 lines
58 B
Go
5 lines
58 B
Go
package testdata
|
|
|
|
func bar() {
|
|
_ = 0 //nolint: foobar
|
|
}
|