1 //go:generate go run ../generate.go
2 3 // Package quickfix contains analyzes that implement code refactorings.
4 // None of these analyzers produce diagnostics that have to be followed.
5 // Most of the time, they only provide alternative ways of doing things,
6 // requiring users to make informed decisions.
7 //
8 // None of these analyzes should fail a build, and they are likely useless in CI as a whole.
9 package quickfix
10