Skip to content

Commit 00b2240

Browse files
authored
build(deps): Add flake8-bugbear (#379)
2 parents 8108a95 + 48b5e7a commit 00b2240

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force
2828
- libvcs: Update to 0.13.x
2929
- Remove `.pre-commit-config.yaml`: Let's not automate what the contributor could /
3030
should do themselves.
31+
- Add [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) (#379)
3132

3233
### Documentation
3334

poetry.lock

Lines changed: 20 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ isort = "*"
9191

9292
### Lint ###
9393
flake8 = "*"
94+
flake8-bugbear = "^22.8.23"
9495
mypy = "*"
9596

9697
[tool.poetry.extras]
@@ -111,7 +112,7 @@ docs = [
111112
test = ["pytest", "pytest-rerunfailures", "pytest-watcher"]
112113
coverage = ["codecov", "coverage", "pytest-cov"]
113114
format = ["black", "isort"]
114-
lint = ["flake8", "mypy"]
115+
lint = ["flake8", "flake8-bugbear", "mypy"]
115116

116117
[build-system]
117118
requires = ["poetry_core>=1.0.0", "setuptools>50"]

0 commit comments

Comments
 (0)