forked from dimagi/commcare-connect
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
17 lines (16 loc) · 705 Bytes
/
setup.cfg
File metadata and controls
17 lines (16 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# flake8 and pycodestyle don't support pyproject.toml
# https://github.com/PyCQA/flake8/issues/234
# https://github.com/PyCQA/pycodestyle/issues/813
[flake8]
max-line-length = 119
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv
extend-ignore = E203
per-file-ignores =
# These files contain JSX templates as Python strings which have long lines
commcare_connect/workflow/templates.py:E501
commcare_connect/workflow/templates/*.py:E501
commcare_connect/ai/agents/workflow_agent.py:E501
commcare_connect/ai/agents/pipeline_agent.py:E501
[pycodestyle]
max-line-length = 119
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv