ocurity / dracon

Security scanning & static analysis tool - forked and rewritten from @thought-machine/dracon
https://ocurity.com
Apache License 2.0
61 stars 9 forks source link

Disable staticcheck SA1019 rule #134

Closed ptzianos closed 2 months ago

ptzianos commented 2 months ago

This rule throws an error if any deprecated APIs or data types are used by the codebase. In general it's a good idea to not use deprecated APIs and data types, but we can't immediately refactor our code to not use the Tekton V1Beta1 API objects which is the main source of errors from this rule. For now it should be disabled and we should focus on not introducing new deprecated APIs.