Skip to content

Commit

Permalink
newfeature
Browse files Browse the repository at this point in the history
  • Loading branch information
UtkarshMishra-Microsoft committed Dec 18, 2024
1 parent 1487ef6 commit 1b0248c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 31 deletions.
60 changes: 30 additions & 30 deletions ClientAdvisor/App/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,36 @@ ignore=tests,.venv, frontend ; Ignore the tests folder globally.

[MESSAGES CONTROL]
disable=
invalid-name, # C0103: Ignore naming style errors
line-too-long, # C0301: Ignore long lines
missing-function-docstring, # C0116: Ignore missing function docstrings
missing-class-docstring, # C0115: Ignore missing class docstrings
missing-module-docstring, # C0114: Ignore missing module docstrings
redefined-outer-name, # W0621: Ignore redefined variables warnings
broad-exception-raised, # W0719: Ignore broad exception raised warnings
broad-exception-caught, # W0718: Ignore broad exception caught warnings
too-many-arguments, # R0913: Ignore too many arguments
too-many-locals, # R0914: Ignore too many local variables
too-many-return-statements, # R0911: Ignore too many return statements
too-many-branches, # R0912: Ignore too many branches
unused-argument, # W0613: Ignore unused arguments
unspecified-encoding, # W1514: Ignore unspecified encoding in open()
logging-fstring-interpolation, # W1203: Ignore lazy f-string interpolation
missing-timeout, # W3101: Ignore missing timeout in requests.get
no-else-return, # R1705: Ignore unnecessary 'else' after return
redefined-builtin, # W0622: Ignore redefining built-ins
global-statement, # W0603: Ignore global statement usage
no-name-in-module, # E0611: Ignore unresolved module names
no-member, # E1101: Ignore module has no 'member'
pointless-string-statement, # W0105: Ignore pointless string statements
unnecessary-comprehension, # R1721: Ignore unnecessary comprehensions
fixme, # W0511: Ignore TODO comments
too-many-instance-attributes, # R0902: Ignore too many attributes in class
too-many-positional-arguments, # R0917: Ignore too many positional arguments
raise-missing-from, # W0707: Ignore re-raising without 'raise from'
import-outside-toplevel, # C0415: Ignore imports outside top-level
no-value-for-parameter, # E1120: Ignore missing arguments in function
parse-error
invalid-name,
line-too-long,
missing-function-docstring,
missing-class-docstring,
missing-module-docstring,
redefined-outer-name,
broad-exception-raised,
broad-exception-caught,
too-many-arguments,
too-many-locals,
too-many-return-statements,
too-many-branches,
unused-argument,
unspecified-encoding,
logging-fstring-interpolation,
missing-timeout,
no-else-return,
redefined-builtin,
global-statement,
no-name-in-module,
no-member,
pointless-string-statement,
unnecessary-comprehension,
fixme,
too-many-instance-attributes,
too-many-positional-arguments,
raise-missing-from,
import-outside-toplevel,
no-value-for-parameter,
parse-error

[TYPECHECK]
generated-members=get_bearer_token_provider
Expand Down
3 changes: 2 additions & 1 deletion ClientAdvisor/App/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ flake8-logging-format==0.9.0
black==24.8.0
autoflake==2.3.1
isort==5.13.2
pylint==2.17.4
pylint==2.15.10
astroid==2.12.13

# Testing tools
pytest>=8.2,<9 # Compatible version for pytest-asyncio
Expand Down

0 comments on commit 1b0248c

Please sign in to comment.