-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pre-commit-config.yaml
55 lines (54 loc) · 1.77 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
49
50
51
52
53
54
55
default_language_version:
python: python3.9
repos:
# ruff-pre-commit docs recommend running ruff before black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.4
hooks:
# Config for ruff lives in pyproject.toml
- id: ruff
args: [ --fix ]
- repo: https://github.com/psf/black
rev: 24.3.0
hooks:
- id: black
# Config for black lives in pyproject.toml
- repo: https://github.com/asottile/blacken-docs
rev: v1.12.1
hooks:
- id: blacken-docs
additional_dependencies: [black==24.3.0]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
hooks:
- id: trailing-whitespace
args: ["--markdown-linebreak-ext=md,markdown"]
- id: end-of-file-fixer
- id: check-yaml
- id: check-ast
- id: fix-byte-order-marker
- id: check-merge-conflict
- id: debug-statements
- id: detect-private-key
- id: detect-aws-credentials
args: ["--allow-missing-credentials"]
- repo: https://github.com/uktrade/pii-secret-check-hooks
rev: 0.0.0.35
hooks:
- id: pii_secret_filename
files: ''
language: python
args: [exclude]
pass_filenames: true
require_serial: true
- id: pii_secret_file_content
files: ''
language: python
args: [--exclude=pii-secret-exclude.txt]
pass_filenames: true
require_serial: true
additional_dependencies: [click==8.0.4]
#- id: hooks_version_check
# name: Checking local hooks against latest release
# verbose: true
# require_serial: true