1
+ [MASTER]
2
+ ignore =tests, .venv, frontend ; Ignore the tests folder globally.
3
+
4
+ [MESSAGES CONTROL]
5
+ disable =
6
+ invalid-name, # C0103: Ignore naming style errors
7
+ line-too-long, # C0301: Ignore long lines
8
+ missing-function-docstring, # C0116: Ignore missing function docstrings
9
+ missing-class-docstring, # C0115: Ignore missing class docstrings
10
+ missing-module-docstring, # C0114: Ignore missing module docstrings
11
+ redefined-outer-name, # W0621: Ignore redefined variables warnings
12
+ broad-exception-raised, # W0719: Ignore broad exception raised warnings
13
+ broad-exception-caught, # W0718: Ignore broad exception caught warnings
14
+ too-many-arguments, # R0913: Ignore too many arguments
15
+ too-many-locals, # R0914: Ignore too many local variables
16
+ too-many-return-statements, # R0911: Ignore too many return statements
17
+ too-many-statements, # R0915: Ignore too many statements in a function
18
+ too-many-branches, # R0912: Ignore too many branches
19
+ unused-argument, # W0613: Ignore unused arguments
20
+ unspecified-encoding, # W1514: Ignore unspecified encoding in open()
21
+ logging-fstring-interpolation, # W1203: Ignore lazy f-string interpolation
22
+ missing-timeout, # W3101: Ignore missing timeout in requests.get
23
+ no-else-return, # R1705: Ignore unnecessary 'else' after return
24
+ redefined-builtin, # W0622: Ignore redefining built-ins
25
+ global-statement, # W0603: Ignore global statement usage
26
+ no-name-in-module, # E0611: Ignore unresolved module names
27
+ no-member, # E1101: Ignore module has no 'member'
28
+ pointless-string-statement, # W0105: Ignore pointless string statements
29
+ unnecessary-comprehension, # R1721: Ignore unnecessary comprehensions
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
33
+ parse-error
34
+
35
+ [TYPECHECK]
36
+ generated-members =get_bearer_token_provider
37
+
38
+ [FORMAT]
39
+ max-module-lines =1700 # Allow large modules up to 1700 lines
40
+ max-line-length =160 # Allow lines up to 160 character
0 commit comments