-
Notifications
You must be signed in to change notification settings - Fork 3
/
.pre-commit-config.yaml
48 lines (41 loc) · 1.06 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
41
42
43
44
45
46
47
48
repos:
- repo: local
hooks:
- id: sort-json
name: Ensure sorting of JSON files
entry: python scripts/sort_endpoint_mapping.py
language: system
types: [ python ]
stages: [ commit ]
always_run: true
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
# Git
- id: forbid-new-submodules
# Files
- id: check-byte-order-marker
- id: check-executables-have-shebangs
- id: check-added-large-files
- id: check-symlinks
- id: end-of-file-fixer
- id: trailing-whitespace
# Syntax
- id: check-yaml
- id: check-toml
- id: check-ast
- id: check-json
# Code
- id: check-merge-conflict
- id: debug-statements
- id: detect-private-key
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.10.0
hooks:
- id: black
language_version: python3.12
stages: [commit]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.2
hooks:
- id: ruff