Tag quality queries that are high precision and dont use pointsto

This commit is contained in:
Joe Farebrother
2025-06-17 15:02:55 +01:00
parent b62a6db314
commit 049c0705a9
8 changed files with 21 additions and 15 deletions

View File

@@ -2,9 +2,9 @@
* @name First argument to super() is not enclosing class
* @description Calling super with something other than the enclosing class may cause incorrect object initialization.
* @kind problem
* @tags reliability
* maintainability
* convention
* @tags quality
* reliability
* correctness
* external/cwe/cwe-687
* @problem.severity error
* @sub-severity low

View File

@@ -2,7 +2,8 @@
* @name `__del__` is called explicitly
* @description The `__del__` special method is called by the virtual machine when an object is being finalized. It should not be called explicitly.
* @kind problem
* @tags reliability
* @tags quality
* reliability
* correctness
* @problem.severity warning
* @sub-severity low

View File

@@ -2,7 +2,8 @@
* @name Comparison using is when operands support `__eq__`
* @description Comparison using 'is' when equivalence is not the same as identity
* @kind problem
* @tags reliability
* @tags quality
* reliability
* correctness
* @problem.severity warning
* @sub-severity low