Add git precommit hook that generates pyi files (#2447)
This commit is contained in:
parent
0378b2aa3a
commit
3ff88390c2
2
.github/workflows/pre-commit.yml
vendored
2
.github/workflows/pre-commit.yml
vendored
@ -27,3 +27,5 @@ jobs:
|
|||||||
- run: |
|
- run: |
|
||||||
poetry run pip install pre-commit
|
poetry run pip install pre-commit
|
||||||
poetry run pre-commit run --all-files
|
poetry run pre-commit run --all-files
|
||||||
|
env:
|
||||||
|
SKIP: update-pyi-files
|
||||||
|
@ -23,3 +23,12 @@ repos:
|
|||||||
hooks:
|
hooks:
|
||||||
- id: darglint
|
- id: darglint
|
||||||
exclude: '^reflex/reflex.py'
|
exclude: '^reflex/reflex.py'
|
||||||
|
|
||||||
|
- repo: local
|
||||||
|
hooks:
|
||||||
|
- id: update-pyi-files
|
||||||
|
name: update-pyi-files
|
||||||
|
always_run: true
|
||||||
|
language: system
|
||||||
|
description: 'Update pyi files as needed'
|
||||||
|
entry: python scripts/pyi_generator.py
|
||||||
|
Loading…
Reference in New Issue
Block a user