@@ -4,37 +4,35 @@ ignore=tests ; Ignore the tests folder globally.
4
4
[MESSAGES CONTROL]
5
5
disable =
6
6
invalid-name, # C0103: Ignore naming style errors
7
+ line-too-long, # C0301: Ignore long lines
7
8
missing-function-docstring, # C0116: Ignore missing function docstrings
8
9
missing-class-docstring, # C0115: Ignore missing class docstrings
9
10
missing-module-docstring, # C0114: Ignore missing module docstrings
11
+ redefined-outer-name, # W0621: Ignore redefined variables warnings
10
12
broad-exception-raised, # W0719: Ignore broad exception raised warnings
11
13
broad-exception-caught, # W0718: Ignore broad exception caught warnings
12
14
too-many-arguments, # R0913: Ignore too many arguments
13
15
too-many-locals, # R0914: Ignore too many local variables
14
16
too-many-return-statements, # R0911: Ignore too many return statements
15
- too-many-statements, # R0915: Ignore too many statements in a function
16
17
too-many-branches, # R0912: Ignore too many branches
18
+ unused-argument, # W0613: Ignore unused arguments
17
19
unspecified-encoding, # W1514: Ignore unspecified encoding in open()
20
+ logging-fstring-interpolation, # W1203: Ignore lazy f-string interpolation
18
21
missing-timeout, # W3101: Ignore missing timeout in requests.get
19
22
no-else-return, # R1705: Ignore unnecessary 'else' after return
20
23
redefined-builtin, # W0622: Ignore redefining built-ins
21
24
global-statement, # W0603: Ignore global statement usage
22
25
no-name-in-module, # E0611: Ignore unresolved module names
23
26
no-member, # E1101: Ignore module has no 'member'
24
- pointless-string-statement, # W0105: Ignore pointless string statements
27
+ pointless-string-statement, # W0105: Ignore pointless string statement
25
28
unnecessary-comprehension, # R1721: Ignore unnecessary comprehensions
26
- simplifiable-if-expression, # R1719: Ignore simplifiable if expressions
27
- dangerous-default-value, # W0102: Ignore mutable default arguments
28
- consider-using-with, # R1732: Ignore using 'with' for resource management
29
+ fixme, # W0511: Ignore TODO comments
29
30
too-many-instance-attributes, # R0902: Ignore too many attributes in class
30
- too-many-positional-arguments, # R0917: Ignore too many positional arguments
31
- raise-missing-from, # W0707: Ignore re-raising without 'raise from'
32
- import-outside-toplevel, # C0415: Ignore imports outside top-level
33
- no-value-for-parameter, # E1120: Ignore missing arguments in function calls
31
+ too-many-positional-arguments # R0917: Ignore too many positional arguments
34
32
35
33
[TYPECHECK]
36
34
generated-members =get_bearer_token_provider
37
35
38
36
[FORMAT]
39
- max-module-lines =1700 # Allow modules up to 1700 lines
37
+ max-module-lines =1700 # Allow large modules up to 1700 lines
40
38
max-line-length =160 # Allow lines up to 160 characters
0 commit comments