Skip to content

Commit 2da59da

Browse files
committed
chore: remove flake8 from development dependencies
1 parent c67c93a commit 2da59da

2 files changed

Lines changed: 2 additions & 105 deletions

File tree

poetry.lock

Lines changed: 1 addition & 89 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,15 @@ absolufy-imports = "^0.3.1"
2828
binarylane-python-client = "^0.13.2a0"
2929
safety = "*"
3030

31-
[tool.poetry.group.flake8.dependencies]
32-
flake8 = "^6.0.0"
33-
flake8-type-checking = "^2.4.0"
34-
flake8-pyproject = "^1.2.3"
35-
3631
[tool.taskipy.tasks]
3732
generate = "python scripts/generate.py"
3833
black = "black ."
39-
flake8 = "flake8 src"
4034
isort = "isort ."
4135
mypy = "mypy ."
4236
pylint = "pylint src"
4337
safety = "poetry export -f requirements.txt | safety check --bare --stdin"
4438
test = "pytest tests"
45-
check = "task isort && task black && task flake8 && task mypy && task pylint && task test && task safety"
39+
check = "task isort && task black && task mypy && task pylint && task test && task safety"
4640

4741
[tool.isort]
4842
py_version = 37
@@ -84,15 +78,6 @@ mypy_path = "lib:src"
8478
namespace_packages = true
8579
explicit_package_bases = true
8680

87-
[tool.flake8]
88-
max-line-length = 120
89-
ignore = [
90-
"E203", # Whitespace before ':' - black and flake8 disagree on `foo[len(bar) :]`
91-
]
92-
exclude = [
93-
"api", # generated command classes
94-
]
95-
9681
[tool.pyright]
9782
extraPaths = ["src", "lib"]
9883

0 commit comments

Comments
 (0)