@@ -14,6 +14,7 @@ disable=
14
14
too-many-arguments, # R0913: Ignore too many arguments
15
15
too-many-locals, # R0914: Ignore too many local variables
16
16
too-many-return-statements, # R0911: Ignore too many return statements
17
+ too-many-statements, # R0915: Ignore too many statements in a function
17
18
too-many-branches, # R0912: Ignore too many branches
18
19
unused-argument, # W0613: Ignore unused arguments
19
20
unspecified-encoding, # W1514: Ignore unspecified encoding in open()
@@ -26,12 +27,9 @@ disable=
26
27
no-member, # E1101: Ignore module has no 'member'
27
28
pointless-string-statement, # W0105: Ignore pointless string statements
28
29
unnecessary-comprehension, # R1721: Ignore unnecessary comprehensions
29
- fixme, # W0511: Ignore TODO comments
30
- too-many-instance-attributes, # R0902: Ignore too many attributes in class
31
- too-many-positional-arguments, # R0917: Ignore too many positional arguments
32
- raise-missing-from, # W0707: Ignore re-raising without 'raise from'
33
- import-outside-toplevel, # C0415: Ignore imports outside top-level
34
- no-value-for-parameter # E1120: Ignore missing arguments in function calls
30
+ simplifiable-if-expression, # R1719: Ignore simplifiable if expressions
31
+ dangerous-default-value, # W0102: Ignore mutable default arguments
32
+ consider-using-with # R1732: Ignore using 'with' for file or resource management
35
33
36
34
[TYPECHECK]
37
35
generated-members =get_bearer_token_provider
0 commit comments