31 lines
874 B
YAML
31 lines
874 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
- repo: https://github.com/rstcheck/rstcheck
|
|
rev: 'v6.2.0' # Use the sha / tag you want to point at
|
|
hooks:
|
|
- id: rstcheck
|
|
additional_dependencies: ["sphinx>=4.0"]
|
|
- repo: local
|
|
hooks:
|
|
- id: nox (python)
|
|
name: nox (python)
|
|
description: Run nox fixers and linters for Python
|
|
entry: nox -t python
|
|
language: system
|
|
pass_filenames: false
|
|
types:
|
|
- python
|
|
- id: nox (rust)
|
|
name: nox (rust)
|
|
description: Run nox fixers and linters for Rust
|
|
entry: nox -t rust
|
|
language: system
|
|
pass_filenames: false
|
|
types:
|
|
- rust
|