We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10e1e49 commit 0646a71Copy full SHA for 0646a71
README.md
@@ -25,8 +25,11 @@ rdeadcode -file path/to/your/file.go -function deadFunction
25
26
## Known issues
27
28
-> [!WARNING] > _deadcode_ detects methods that implement an interface as dead code if it is not used in the project.
+> [!WARNING]
29
+> _deadcode_ detects methods that implement an interface as dead code if it is not used in the project.
30
31
+Please verify the interface compliance at compile time and restore the method when rdeadcode removes it.
32
+
33
```go
34
// Verify interface compliance at compile time
35
var _ fmt.Stringer = myString{}
@@ -39,5 +42,3 @@ func (s myString) String() string {
39
42
return s.Value
40
43
}
41
44
```
-
-Please verify the interface compliance at compile time and restore the method when rdeadcode removes it.
0 commit comments