Skip to content

Commit 61dec71

Browse files
authored
build(deps): Add flake8-bugbear (#408)
2 parents 8161c68 + 4413beb commit 61dec71

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGES

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ $ pip install --user --upgrade --pre libtmux
2020
all empty lines were filtered out. This will lead to a more accurate behavior when using
2121
{meth}`Pane.capture_pane`. Credit: @rockandska, via #405.
2222

23+
### Development
24+
25+
- Add [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) (#408)
26+
2327
### Documentation
2428

2529
- Move to sphinx-autoissues, #406

poetry.lock

+20-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ isort = "*"
7878

7979
### Lint ###
8080
flake8 = "*"
81+
flake8-bugbear = "^22.8.23"
8182
mypy = "*"
8283

8384
[tool.poetry.extras]
@@ -98,7 +99,7 @@ docs = [
9899
test = ["pytest", "pytest-rerunfailures", "pytest-mock", "pytest-watcher"]
99100
coverage = ["codecov", "coverage", "pytest-cov"]
100101
format = ["black", "isort"]
101-
lint = ["flake8", "mypy"]
102+
lint = ["flake8", "flake8-bugbear", "mypy"]
102103

103104
[tool.mypy]
104105
strict = true

0 commit comments

Comments
 (0)