aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/wee-slack.yml2
-rwxr-xr-xgenerate_docs.py1
-rw-r--r--pyproject.toml2
3 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/wee-slack.yml b/.github/workflows/wee-slack.yml
index fb6f3d7..0069dc1 100644
--- a/.github/workflows/wee-slack.yml
+++ b/.github/workflows/wee-slack.yml
@@ -26,7 +26,7 @@ jobs:
- run: poetry run ruff format --check
- - run: poetry run ruff check main.py slack tests typings
+ - run: poetry run ruff check
- run: poetry run pyright main.py slack tests typings
diff --git a/generate_docs.py b/generate_docs.py
index 052c96b..054c341 100755
--- a/generate_docs.py
+++ b/generate_docs.py
@@ -4,6 +4,7 @@
from __future__ import print_function, unicode_literals
from textwrap import dedent
+
import wee_slack
cmds = wee_slack.EventRouter().cmds
diff --git a/pyproject.toml b/pyproject.toml
index 3c32749..0d3fee3 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -47,7 +47,7 @@ strict = ["**"]
reportMissingModuleSource = false
[tool.ruff]
-extend-exclude = ["typings/weechat.pyi"]
+extend-exclude = ["typings/weechat.pyi", "wee_slack.py", "_pytest"]
[tool.ruff.lint]
extend-select = ["I"]