Skip to content
Merged
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
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ $ pip install --user --upgrade --pre libtmux
all empty lines were filtered out. This will lead to a more accurate behavior when using
{meth}`Pane.capture_pane`. Credit: @rockandska, via #405.

### Development

- Add [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) (#408)

### Documentation

- Move to sphinx-autoissues, #406
Expand Down
21 changes: 20 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ isort = "*"

### Lint ###
flake8 = "*"
flake8-bugbear = "^22.8.23"
mypy = "*"

[tool.poetry.extras]
Expand All @@ -98,7 +99,7 @@ docs = [
test = ["pytest", "pytest-rerunfailures", "pytest-mock", "pytest-watcher"]
coverage = ["codecov", "coverage", "pytest-cov"]
format = ["black", "isort"]
lint = ["flake8", "mypy"]
lint = ["flake8", "flake8-bugbear", "mypy"]

[tool.mypy]
strict = true
Expand Down