Would it be reasonable to add a linting rule that requires the use of testify in tests? Failure examples: ``` if err != nil { t.Fatal("Thing should not error") } ``` ``` if a == b { t.Fatal("A and B should not be equal") } ```