mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-03 16:04:41 +01:00
![pre-commit-ci[bot]](/assets/img/avatar_default.png)
updates: - [github.com/astral-sh/ruff-pre-commit: v0.8.2 → v0.8.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.8.2...v0.8.3) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
39 lines
1 KiB
YAML
39 lines
1 KiB
YAML
default_language_version:
|
|
# force all unspecified python hooks to run python3
|
|
python: python3.13
|
|
|
|
#ci:
|
|
# autofix_prs: false
|
|
|
|
repos:
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
# Ruff version.
|
|
rev: 'v0.8.3'
|
|
hooks:
|
|
- id: ruff
|
|
args: [., --fix, --exit-non-zero-on-fix]
|
|
pass_filenames: false
|
|
- id: ruff-format
|
|
args: ["xonsh", "xontrib", "tests", "xompletions"]
|
|
pass_filenames: false
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: 'v1.13.0' # Use the sha / tag you want to point at
|
|
hooks:
|
|
- id: mypy
|
|
pass_filenames: false
|
|
additional_dependencies:
|
|
- types-ujson
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
exclude: |
|
|
(?x)^(
|
|
docs/_static/.+
|
|
)$
|
|
- id: check-case-conflict
|
|
- id: check-merge-conflict
|
|
- id: check-yaml
|
|
- id: check-toml
|
|
- id: check-added-large-files
|