Skip to content

Commit 0cbc13d

Browse files
pylint
1 parent 57b1c5e commit 0cbc13d

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

ResearchAssistant/App/.pylintrc

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ disable=
1414
too-many-arguments, # R0913: Ignore too many arguments
1515
too-many-locals, # R0914: Ignore too many local variables
1616
too-many-return-statements, # R0911: Ignore too many return statements
17+
too-many-statements, # R0915: Ignore too many statements in a function
1718
too-many-branches, # R0912: Ignore too many branches
1819
unused-argument, # W0613: Ignore unused arguments
1920
unspecified-encoding, # W1514: Ignore unspecified encoding in open()
@@ -26,12 +27,9 @@ disable=
2627
no-member, # E1101: Ignore module has no 'member'
2728
pointless-string-statement, # W0105: Ignore pointless string statements
2829
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
3533

3634
[TYPECHECK]
3735
generated-members=get_bearer_token_provider

0 commit comments

Comments
 (0)