mirror of https://github.com/locustio/locust.git
19 lines
487 B
YAML
19 lines
487 B
YAML
repos:
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
# Ruff version.
|
|
rev: v0.10.0 # Pin the same version in the pyproject.toml file
|
|
hooks:
|
|
# Run the linter.
|
|
- id: ruff
|
|
args: [--fix]
|
|
# Run the formatter.
|
|
- id: ruff-format
|
|
- repo: local
|
|
hooks:
|
|
- id: yarn-lint
|
|
name: yarn lint
|
|
files: ^locust/webui/
|
|
entry: bash -c "cd locust/webui && yarn lint"
|
|
language: system
|
|
pass_filenames: false
|