forked from instadeepai/mlip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
63 lines (58 loc) · 1.95 KB
/
.pre-commit-config.yaml
File metadata and controls
63 lines (58 loc) · 1.95 KB
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
56
57
58
59
60
61
62
63
default_stages: [ "pre-commit", "commit-msg", "pre-push" ]
default_language_version:
python: python3.12
repos:
- repo: https://github.com/timothycrosley/isort
rev: 5.12.0
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 24.2.0
hooks:
- id: black
name: "Code formatter"
exclude: notebooks/
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: end-of-file-fixer
name: "End of file fixer"
exclude: docker/template.env *.fasta
- id: debug-statements
name: "Debug imports and breakpoints checker"
- id: requirements-txt-fixer
name: "Requirements txt fixer"
- id: mixed-line-ending
name: "Mixed line ending fixer"
- id: check-yaml
name: "Yaml checker"
args: [ '--unsafe' ]
- id: trailing-whitespace
name: "Trailing whitespace fixer"
- repo: https://github.com/PyCQA/flake8
rev: 7.3.0
hooks:
- id: flake8
# E203 - ":" with whitespace before it
# W503 - line break before binary operator (conflicts with other pre-commit hooks).
# CCR001 - Cognitive complexity (it's too annoying - write the functions you want ;)).
# C408 - allow to write dict() instead of rewriting as literal
name: "Linter"
args:
- --config=setup.cfg
- --ignore=E203,W503,CCR001,C408
- --max-line-length=88
additional_dependencies:
- pep8-naming
- flake8-builtins
- flake8-comprehensions
- flake8-bugbear
- flake8-pytest-style
- flake8-cognitive-complexity
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v2.3.0
hooks:
- id: conventional-pre-commit
name: "Commit linter"
stages: [ commit-msg ]
args: [ ci, build, docs, feat, fix, perf, refactor, style, test, EXP, revert, chore, config, release, cleanup]