|
@@ -74,7 +74,6 @@ public:
|
|
STATIC_CALLED_ON_INSTANCE, // A static method was called on an instance of a class instead of on the class itself.
|
|
STATIC_CALLED_ON_INSTANCE, // A static method was called on an instance of a class instead of on the class itself.
|
|
REDUNDANT_STATIC_UNLOAD, // The `@static_unload` annotation is used but the class does not have static data.
|
|
REDUNDANT_STATIC_UNLOAD, // The `@static_unload` annotation is used but the class does not have static data.
|
|
REDUNDANT_AWAIT, // await is used but expression is synchronous (not a signal nor a coroutine).
|
|
REDUNDANT_AWAIT, // await is used but expression is synchronous (not a signal nor a coroutine).
|
|
- REDUNDANT_FOR_VARIABLE_TYPE, // The for variable type specifier is a supertype of the inferred type.
|
|
|
|
ASSERT_ALWAYS_TRUE, // Expression for assert argument is always true.
|
|
ASSERT_ALWAYS_TRUE, // Expression for assert argument is always true.
|
|
ASSERT_ALWAYS_FALSE, // Expression for assert argument is always false.
|
|
ASSERT_ALWAYS_FALSE, // Expression for assert argument is always false.
|
|
INTEGER_DIVISION, // Integer divide by integer, decimal part is discarded.
|
|
INTEGER_DIVISION, // Integer divide by integer, decimal part is discarded.
|
|
@@ -123,7 +122,6 @@ public:
|
|
WARN, // STATIC_CALLED_ON_INSTANCE
|
|
WARN, // STATIC_CALLED_ON_INSTANCE
|
|
WARN, // REDUNDANT_STATIC_UNLOAD
|
|
WARN, // REDUNDANT_STATIC_UNLOAD
|
|
WARN, // REDUNDANT_AWAIT
|
|
WARN, // REDUNDANT_AWAIT
|
|
- WARN, // REDUNDANT_FOR_VARIABLE_TYPE
|
|
|
|
WARN, // ASSERT_ALWAYS_TRUE
|
|
WARN, // ASSERT_ALWAYS_TRUE
|
|
WARN, // ASSERT_ALWAYS_FALSE
|
|
WARN, // ASSERT_ALWAYS_FALSE
|
|
WARN, // INTEGER_DIVISION
|
|
WARN, // INTEGER_DIVISION
|