|
1
|
repos: |
|
2
|
- repo: https://github.com/astral-sh/ruff-pre-commit |
|
3
|
rev: v0.9.7 |
|
4
|
hooks: |
|
5
|
- id: ruff |
|
6
|
args: [--fix] |
|
7
|
- id: ruff-format |
|
8
|
- repo: https://github.com/pre-commit/pre-commit-hooks |
|
9
|
rev: v5.0.0 |
|
10
|
hooks: |
|
11
|
- id: trailing-whitespace |
|
12
|
- id: end-of-file-fixer |
|
13
|
- id: check-yaml |
|
14
|
args: [--unsafe] |
|
15
|
- id: check-added-large-files |
|
16
|
args: [--maxkb=500] |
|
17
|
- id: check-merge-conflict |
|
18
|
- id: detect-private-key |
|
19
|
|