Feature - Suppressions
## Description Sometimes people have to write bad code. To prevent AuTA from yelling at these poor people, it should be possible to suppress these warnings. Suppressions should be a file, `.auta.yml`, in the root of the project like the following example: ```yaml suppressions: - path: worker/src/test/resources/** justification: Test resources are intentionally bad to test analyzers ``` ## Priority Medium - errors for code that is intentionally bad or unfixable are annoying, but can be lived with ## Definition of done When AuTA detects such a specification file and can suppress checks for the suppressed files.
issue