I'd like to request that those modules are added here, in OpenAPI I've found classes with methods named after http commands like GET(). I want to use @SupressWarnings to allow this special case method name, but I had to to copy the entire 68 line checkstyleRules into an openAPI pom.xml so I could modify it. Changing it here makes more sense.
It is possible to use the java annotation
@SupressWarnings
to filter checkstyle errors, however this needs a couple of extra modules in the checkstyle plugin:SuppressWarningsFilter
andSuppressWarningsHolder
. See: https://stackoverflow.com/questions/4023185/disable-a-particular-checkstyle-rule-for-a-particular-line-of-codeI'd like to request that those modules are added here, in OpenAPI I've found classes with methods named after http commands like
GET()
. I want to use@SupressWarnings
to allow this special case method name, but I had to to copy the entire 68 linecheckstyleRules
into an openAPI pom.xml so I could modify it. Changing it here makes more sense.