
* ruff-format: unify Black with Ruff * ruff lint. * v0.1.0 * run precommit * hand fixing * fix `not isinstance(...)` Co-authored-by: Thomas Brandého <thomas.brandeho@gmail.com> * rev isinstance(...) with noqa * exclude = ["*.pyi"] * apply precommit * apply format * revert pyi * fixing * Fix or Co-authored-by: Thomas Brandého <thomas.brandeho@gmail.com> * Update reflex/components/datadisplay/code.pyi * Apply suggestions from code review Co-authored-by: Thomas Brandého <thomas.brandeho@gmail.com> * Update tests/components/core/test_colors.py * Update reflex/app.py * Update reflex/app.py * Update benchmarks/test_benchmark_compile_pages.py * Update benchmarks/test_benchmark_compile_pages.py * Update benchmarks/test_benchmark_compile_pages.py --------- Co-authored-by: Thomas Brandého <thomas.brandeho@gmail.com>
35 lines
835 B
YAML
35 lines
835 B
YAML
fail_fast: true
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
|
rev: v0.1.0
|
|
hooks:
|
|
- id: ruff-format
|
|
args: [integration, reflex, tests]
|
|
- id: ruff
|
|
args: ["--fix", "--exit-non-zero-on-fix"]
|
|
exclude: '^integration/benchmarks/'
|
|
|
|
- repo: https://github.com/RobertCraigie/pyright-python
|
|
rev: v1.1.313
|
|
hooks:
|
|
- id: pyright
|
|
args: [integration, reflex, tests]
|
|
language: system
|
|
|
|
- repo: https://github.com/terrencepreilly/darglint
|
|
rev: v1.8.1
|
|
hooks:
|
|
- id: darglint
|
|
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/make_pyi.py
|