-
Notifications
You must be signed in to change notification settings - Fork 8
/
.pre-commit-config.yaml
48 lines (48 loc) · 1.46 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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: check-added-large-files
name: 🐘 Check for added large files
- id: check-toml
name: ✔️ Check TOML
- id: check-yaml
name: ✔️ Check YAML
args:
- --unsafe
- id: end-of-file-fixer
name: 🪚 Fix end of files
- id: trailing-whitespace
name: ✂️ Trim trailing whitespaces
# - repo: https://github.com/asottile/pyupgrade
# rev: v2.37.3
# hooks:
# - id: pyupgrade
# name: ⏫ Running pyupgrade
# args:
# - --py3-plus
# - --keep-runtime-typing
# - repo: https://github.com/myint/autoflake
# rev: v1.5.3
# hooks:
# - id: autoflake
# name: ❄️ Running autoflake
# args:
# - --recursive
# - --in-place
# - --remove-all-unused-imports
# - --remove-unused-variables
# - --expand-star-imports
# - --exclude
# - __init__.py
# - --remove-duplicate-keys
# - repo: https://github.com/pycqa/isort
# rev: 5.10.1
# hooks:
# - id: isort
# name: 🔄 Formatting imports with isort (python)
ci:
autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
autoupdate_commit_msg: ⬆ [pre-commit.ci] pre-commit autoupdate