Skip to content

Commit

Permalink
pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
UtkarshMishra-Microsoft committed Dec 17, 2024
1 parent 3c15f2f commit 9f35381
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 20 deletions.
28 changes: 18 additions & 10 deletions ClientAdvisor/App/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,21 @@ ignore=tests ; Ignore tests folder globally.

[MESSAGES CONTROL]
disable=
line-too-long, # Disable long line warnings
missing-module-docstring, # Ignore missing module docstrings
missing-function-docstring, # Ignore missing function docstrings
too-many-lines, # Ignore too many lines in module
unused-argument, # Ignore unused arguments
broad-exception-caught, # Ignore broad exception catching
broad-exception-raised, # Ignore broad exceptions being raised
redefined-builtin, # Ignore redefined built-in names
logging-too-many-args, # Ignore excessive arguments in logging
unnecessary-comprehension # Ignore unnecessary comprehensions
invalid-name, # Ignore naming style errors (C0103)
line-too-long, # Ignore line too long errors (C0301)
missing-function-docstring, # Ignore missing function docstrings (C0116)
missing-class-docstring, # Ignore missing class docstrings (C0115)
missing-module-docstring, # Ignore missing module docstrings (C0114)
redefined-outer-name, # Ignore redefined variables warnings (W0621)
broad-exception-raised, # Ignore broad exception raised warnings (W0719)
broad-exception-caught, # Ignore broad exception caught warnings (W0718)
too-many-arguments, # Ignore too many arguments warnings (R0913)
too-many-locals, # Ignore too many local variables warnings (R0914)
too-many-return-statements, # Ignore too many return statements warnings (R0911)
too-many-branches, # Ignore too many branches warnings (R0912)
unused-argument, # Ignore unused arguments warnings (W0613)
unspecified-encoding, # Ignore unspecified encoding in open() (W1514)
logging-fstring-interpolation, # Ignore lazy formatting warnings (W1203)
missing-timeout, # Ignore missing timeout in requests.get (W3101)
no-else-return, # Ignore unnecessary else after return (R1705)
fixme # Ignore TODO comments (W0511)
30 changes: 20 additions & 10 deletions ResearchAssistant/App/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,23 @@ ignore=tests ; Ignore tests folder globally.

[MESSAGES CONTROL]
disable=
line-too-long, # Disable long line warnings
missing-module-docstring, # Ignore missing module docstrings
missing-function-docstring, # Ignore missing function docstrings
too-many-lines, # Ignore too many lines in module
unused-argument, # Ignore unused arguments
broad-exception-caught, # Ignore broad exception catching
broad-exception-raised, # Ignore broad exceptions being raised
redefined-builtin, # Ignore redefined built-in names
logging-too-many-args, # Ignore excessive arguments in logging
unnecessary-comprehension # Ignore unnecessary comprehensions
[MESSAGES CONTROL]
disable=
invalid-name, # Ignore naming style errors (C0103)
line-too-long, # Ignore line too long errors (C0301)
missing-function-docstring, # Ignore missing function docstrings (C0116)
missing-class-docstring, # Ignore missing class docstrings (C0115)
missing-module-docstring, # Ignore missing module docstrings (C0114)
redefined-outer-name, # Ignore redefined variables warnings (W0621)
broad-exception-raised, # Ignore broad exception raised warnings (W0719)
broad-exception-caught, # Ignore broad exception caught warnings (W0718)
too-many-arguments, # Ignore too many arguments warnings (R0913)
too-many-locals, # Ignore too many local variables warnings (R0914)
too-many-return-statements, # Ignore too many return statements warnings (R0911)
too-many-branches, # Ignore too many branches warnings (R0912)
unused-argument, # Ignore unused arguments warnings (W0613)
unspecified-encoding, # Ignore unspecified encoding in open() (W1514)
logging-fstring-interpolation, # Ignore lazy formatting warnings (W1203)
missing-timeout, # Ignore missing timeout in requests.get (W3101)
no-else-return, # Ignore unnecessary else after return (R1705)
fixme # Ignore TODO comments (W0511)

0 comments on commit 9f35381

Please sign in to comment.