Skip to content

Commit 2539fce

Browse files
Pipeline
1 parent 7e71599 commit 2539fce

File tree

7 files changed

+124
-13
lines changed

7 files changed

+124
-13
lines changed

.github/workflows/pylint.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,10 @@ jobs:
1818
run: |
1919
python -m pip install --upgrade pip
2020
pip install -r ClientAdvisor/App/requirements.txt
21-
- name: Run flake8
22-
run: flake8 --config=ClientAdvisor/App/.flake8 ClientAdvisor/App
21+
pip install -r ResearchAssistant/App/requirements.txt
22+
- name: Run flake8 and pylint
23+
run: |
24+
flake8 --config=ClientAdvisor/App/.flake8 ClientAdvisor/App
25+
pylint --rcfile=ClientAdvisor/App/.pylintrc ClientAdvisor/App
26+
flake8 --config=ResearchAssistant/App/.flake8 ResearchAssistant/App
27+
pylint --rcfile=ResearchAssistant/App/.pylintrc ResearchAssistant/App

ClientAdvisor/App/.flake8

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[flake8]
22
max-line-length = 88
3-
extend-ignore = E501, E203
4-
exclude = .venv, frontend,
3+
extend-ignore = E501, E203, W503, G004, G200
4+
exclude = .venv, frontend

ClientAdvisor/App/.pylintrc

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[MASTER]
2+
ignore=tests,.venv, frontend ; Ignore the tests folder globally.
3+
4+
[MESSAGES CONTROL]
5+
disable=
6+
invalid-name,
7+
line-too-long,
8+
missing-function-docstring,
9+
missing-class-docstring,
10+
missing-module-docstring,
11+
redefined-outer-name,
12+
broad-exception-raised,
13+
broad-exception-caught,
14+
too-many-arguments,
15+
too-many-locals,
16+
too-many-return-statements,
17+
too-many-branches,
18+
unused-argument,
19+
unspecified-encoding,
20+
logging-fstring-interpolation,
21+
missing-timeout,
22+
no-else-return,
23+
redefined-builtin,
24+
global-statement,
25+
no-name-in-module,
26+
no-member,
27+
pointless-string-statement,
28+
unnecessary-comprehension,
29+
fixme,
30+
too-many-instance-attributes,
31+
# too-many-positional-arguments,
32+
raise-missing-from,
33+
import-outside-toplevel,
34+
no-value-for-parameter,
35+
parse-error
36+
37+
[TYPECHECK]
38+
generated-members=get_bearer_token_provider
39+
40+
[FORMAT]
41+
max-module-lines=1700 # Allow large modules up to 1700 lines
42+
max-line-length=160 # Allow lines up to 160 characters

ClientAdvisor/App/requirements.txt

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Core requirements
12
azure-identity==1.15.0
23
# Flask[async]==2.3.2
34
openai==1.55.3
@@ -12,9 +13,17 @@ gunicorn==20.1.0
1213
quart-session==3.0.0
1314
pymssql==2.3.0
1415
httpx==0.28.0
16+
17+
# Linting and formatting tools
1518
flake8==7.1.1
19+
flake8-logging-format==0.9.0
1620
black==24.8.0
1721
autoflake==2.3.1
1822
isort==5.13.2
23+
pylint==2.15.10
24+
astroid==2.12.13
25+
26+
# Testing tools
27+
pytest>=8.2,<9 # Compatible version for pytest-asyncio
1928
pytest-asyncio==0.24.0
20-
pytest-cov==5.0.0
29+
pytest-cov==5.0.0

ResearchAssistant/App/.flake8

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[flake8]
22
max-line-length = 88
3-
extend-ignore = E501, E203
4-
exclude = .venv, frontend,
3+
extend-ignore = E501, E203, G004
4+
exclude = .venv, frontend

ResearchAssistant/App/.pylintrc

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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
+21-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,28 @@
1-
azure-identity==1.14.0
2-
Flask==3.0.0
3-
openai==1.6.1
1+
# Core requirements
2+
azure-identity==1.15.0
3+
# Flask[async]==2.3.2
4+
openai==1.55.3
45
azure-search-documents==11.4.0b6
56
azure-storage-blob==12.17.0
67
python-dotenv==1.0.0
78
azure-cosmos==4.5.0
8-
pytest-asyncio==0.24.0
9-
pytest-cov==5.0.0
9+
quart==0.19.9
10+
uvicorn==0.24.0
11+
aiohttp==3.9.2
12+
gunicorn==20.1.0
13+
quart-session==3.0.0
14+
pymssql==2.3.0
15+
httpx==0.28.0
16+
17+
# Linting and formatting tools
1018
flake8==7.1.1
19+
flake8-logging-format==0.9.0
1120
black==24.8.0
1221
autoflake==2.3.1
13-
isort==5.13.2
22+
isort==5.13.2
23+
pylint==2.17.4
24+
25+
# Testing tools
26+
pytest>=8.2,<9 # Compatible version for pytest-asyncio
27+
pytest-asyncio==0.24.0
28+
pytest-cov==5.0.0

0 commit comments

Comments
 (0)