File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 30
30
- name : Check docs build
31
31
run : hatch run docs:build
32
32
- name : Check docs examples
33
- run : hatch run docs:check-examples
33
+ run : hatch run docs:check_examples
Original file line number Diff line number Diff line change @@ -111,8 +111,8 @@ dependencies = [
111
111
" mkdocs-git-authors-plugin" ,
112
112
" mkdocs-minify-plugin" ,
113
113
" mike" ,
114
- " mypy " , # TODO: Replace with ruff perhaps?
115
- " django-stubs[compatible-mypy] " ,
114
+ " ruff " ,
115
+ " django-stubs" ,
116
116
" linkcheckmd" ,
117
117
" reactpy_django @ {root:uri}" ,
118
118
]
@@ -127,6 +127,7 @@ linkcheck = [
127
127
]
128
128
deploy_latest = [" cd docs && mike deploy --push --update-aliases {args} latest" ]
129
129
deploy_develop = [" cd docs && mike deploy --push develop" ]
130
+ check_examples = [" ruff check docs/examples/python" ]
130
131
131
132
# >>> Generic Tools <<<
132
133
You can’t perform that action at this time.
0 commit comments