mirror of
https://github.com/TagStudioDev/TagStudio.git
synced 2026-06-08 16:43:04 +00:00
* refactor(ci): remove mypy * fix(ci): restore 'type: ignore' comment for st_birthtime property
27 lines
593 B
YAML
27 lines
593 B
YAML
---
|
|
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: pyright
|
|
name: pyright
|
|
entry: pyright
|
|
language: system
|
|
types_or: [python, pyi]
|
|
require_serial: true
|
|
|
|
- id: ruff
|
|
name: ruff
|
|
entry: ruff check
|
|
language: system
|
|
types_or: [python, pyi, jupyter]
|
|
args: [--force-exclude]
|
|
require_serial: true
|
|
|
|
- id: ruff-format
|
|
name: ruff-format
|
|
entry: ruff format
|
|
language: system
|
|
types_or: [python, pyi, jupyter]
|
|
args: [--force-exclude, --check]
|
|
require_serial: true
|