Skip to content
Open
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
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repos:
hooks:
- id: remove-crlf
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
rev: v2.4.1
hooks:
- id: codespell
additional_dependencies:
Expand All @@ -37,19 +37,19 @@ repos:
args:
- --msg-filename
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
rev: 3.0.3
rev: 3.2.1
hooks:
- id: editorconfig-checker
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 3.0.0
hooks:
- id: check-mailmap
- repo: https://github.com/adrienverge/yamllint
rev: v1.35.1
rev: v1.37.1
hooks:
- id: yamllint
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.19
rev: 0.7.22
hooks:
- id: mdformat
additional_dependencies:
Expand All @@ -63,18 +63,18 @@ repos:
- mdformat-config
- mdformat-web
- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.16.0
rev: v0.18.1
hooks:
- id: markdownlint-cli2
additional_dependencies:
- markdown-it-texmath
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.2
rev: v0.11.13
hooks:
- id: ruff
- id: ruff-format
- repo: https://github.com/kumaraditya303/mirrors-pyright
rev: v1.1.390
rev: v1.1.401
hooks:
- id: pyright

Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

https://www.sphinx-doc.org/en/master/usage/configuration.html
"""

from tmux_bitahub import __version__ as version # type: ignore
from tmux_bitahub._metainfo import author, copyright, project # type: ignore

Expand Down
1 change: 1 addition & 0 deletions src/tmux_bitahub/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Get bitahub status."""

from typing import List, Literal
from urllib import request

Expand Down
1 change: 1 addition & 0 deletions src/tmux_bitahub/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
r"""This module can be called by
`python -m <https://docs.python.org/3/library/__main__.html>`_.
"""

from shlex import split
from subprocess import check_output # nosec: B404
from typing import Callable
Expand Down
1 change: 1 addition & 0 deletions tests/bitahub_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""bitahub_test."""

from tmux_bitahub import get_result # type: ignore


Expand Down
Loading