We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4585665 commit 0923520Copy full SHA for 0923520
pyrightconfig.json
@@ -0,0 +1,3 @@
1
+{
2
+ "stubPath": "mock_renpy"
3
+}
requirements/lint.txt
@@ -0,0 +1,2 @@
+pyright
+ruff
tox.ini
@@ -16,13 +16,15 @@ deps = -r requirements/tests.txt
16
commands =
17
py.test -s -vv --cov-report lcov --cov=encyclopaedia tests
18
19
-# Code style
20
[testenv:lint]
21
basepython=py39
22
skip_install = true
23
-deps = ruff
+deps = -r requirements/lint.txt
24
changedir = .
25
-commands = ruff check encyclopaedia scripts tests
+commands =
+ ruff check encyclopaedia scripts tests
26
+ pyright encyclopaedia
27
+
28
29
# Build local copy of docs
30
[testenv:build_docs_html]
0 commit comments