Skip to content

Commit

Permalink
chore: update lint settings to exclude dev files
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-push committed Nov 1, 2023
1 parent 9d33f79 commit 7fc9c6b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[flake8]
max-line-length = 88
extend-ignore = E203
extend-ignore = E203
exclude =
.mypy_cache,
.pytest,
.venv,
.vscode,
__pycache__
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ warn_return_any = false
warn_unreachable = true
# Misc
pretty = true
exclude = [
'^test',
]

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 7fc9c6b

Please sign in to comment.