Skip to content

Commit

Permalink
Merge pull request #47 from qognitive/bugfix/rtd-warning-remove
Browse files Browse the repository at this point in the history
_static is added to the list by default
  • Loading branch information
sebastroy authored Oct 1, 2024
2 parents 7f05d12 + 2bfa5fa commit 5a69fa1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repos:
rev: v1.9.0
hooks:
- id: mypy
args: ["--config", "pyproject.toml"]
args: ["--config-file", "pyproject.toml"]
# Misc
- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ clean:

.PHONY: pre-commit-setup
pre-commit-setup:
pre-commit install
pre-commit install
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = "furo"
html_static_path = ["_static"]
html_static_path = [] # type: ignore


# Breathe configuration
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ strict_optional = true
ignore_missing_imports = true
explicit_package_bases = true

exclude = []
exclude = ["docs", "build"]

[tool.ruff]
exclude = [
Expand Down

0 comments on commit 5a69fa1

Please sign in to comment.