-
Notifications
You must be signed in to change notification settings - Fork 22
/
.pre-commit-config.yaml
75 lines (67 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
default_stages: [ "commit", "commit-msg", "push" ]
default_language_version:
python: python3
repos:
- repo: https://github.com/timothycrosley/isort
rev: 5.11.5
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
- id: black
name: "Code formatter"
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
hooks:
- id: end-of-file-fixer
name: "End of file fixer"
- 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: 6.1.0
hooks:
- id: flake8
name: "Linter"
additional_dependencies:
- pep8-naming
- flake8-builtins
- flake8-comprehensions
- flake8-bugbear
- flake8-pytest-style
- flake8-cognitive-complexity
- flake8-pyproject
- importlib-metadata<5.0
- repo: local
hooks:
- id: mypy
name: "Static type checker"
entry: python -m mypy stoix/
language: system
types: [ python ]
pass_filenames: false
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
rev: v4.1.0
hooks:
- id: commitlint
name: "Commit linter"
stages: [ commit-msg ]
additional_dependencies: [ '@commitlint/config-conventional' ]
- repo: https://github.com/codespell-project/codespell
rev: v2.2.2
hooks:
- id: codespell
name: codespell
description: Checks for common misspellings in text files.
entry: codespell --skip="*.js,*.html,*.css, *.svg" -L reacher
language: python
types: [text]