github.com/nozzle/golangci-lint@v1.49.0-nz3/test/testdata/fix/out/godot.go (about)

     1  //golangcitest:args -Egodot
     2  //golangcitest:expected_exitcode 0
     3  package p
     4  
     5  /*
     6  This comment won't be checked in default mode
     7  */
     8  
     9  // This comment will be fixed.
    10  func godot(a, b int) int {
    11  	// Nothing to do here
    12  	return a + b
    13  }