-
Notifications
You must be signed in to change notification settings - Fork 18
/
.pre-commit-config.yaml
40 lines (38 loc) · 1.17 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
files: src/python
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-yaml
description: Check yaml files for parseable syntax
- id: check-added-large-files
description: Prevent large files from being committed
- id: check-merge-conflict
description: Check for files that contain merge conflict strings
- id: check-symlinks
description: Check for symlinks which do not point to anything
- id: check-executables-have-shebangs
description: Check that (non-binary) executables have shebangs
- id: detect-private-key
description: Detects the presence of private keys
- id: end-of-file-fixer
description: Fix empty lines at ends of files
- id: mixed-line-ending
description: Replace or check mixed line endings
- id: trailing-whitespace
description: Trim trailing whitespaces
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.6.7
hooks:
# Run the linter.
- id: ruff
args:
- --fix
- --config
- src/python/pyproject.toml
# Run the formatter.
- id: ruff-format
args:
- --config
- src/python/pyproject.toml