Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[flake8]

extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
ignore =
# Allow longer lines permissively.
E501,
per-file-ignores =
# Allow tests to import permissively.
*_test.py:F403,F405
# Disable checks where black is disabled via `# fmt: off`.
pyteal/ir/ops.py:E221,E241
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
black==21.7b0
flake8
flake8-black
mypy==0.910
pep8-naming
pytest
pytest-timeout
py-algorand-sdk