-
Notifications
You must be signed in to change notification settings - Fork 44
/
.pre-commit-config.yaml
54 lines (47 loc) · 1.48 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-docstring-first
- id: detect-private-key
- repo: https://github.com/myint/autoflake
rev: v2.2.1
hooks:
- id: autoflake
files: (^(src|tests)/)|(^[^/]*$)
args: [--in-place, --remove-all-unused-imports, --recursive, --ignore-init-module-imports]
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
args: ["--profile", "black", "--filter-files"]
- repo: https://github.com/kynan/nbstripout
rev: 0.6.0
hooks:
- id: nbstripout
- repo: https://github.com/pycqa/flake8
rev: 6.1.0
hooks:
- id: flake8
args: ["--count", "--select=E9,F63,F7,F82", "--show-source", "--statistics"]
- repo: https://github.com/psf/black
rev: 23.10.1
hooks:
- id: black-jupyter
language_version: python3.11
language: python
types: [python]
- repo: local
hooks:
- id: license_embedded
name: license_embedded
entry: python3 .github/hooks/license_embedded.py
language: system
files: (src/.*\.py|.*\.ipynb)
- repo: https://github.com/jorisroovers/gitlint
rev: v0.19.1 # Fill in a tag / sha here (e.g. v0.19.1)
hooks:
- id: gitlint
args: [--ignore=B6, --msg-filename]