-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml.example
77 lines (71 loc) · 1.99 KB
/
.pre-commit-config.yaml.example
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
76
77
repos:
# Commit lint
- repo: https://github.com/opensource-nepal/commitlint
rev: v1.0
hooks:
- id: commitlint
# Standard checks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-ast
- id: debug-statements
- id: check-executables-have-shebangs
- id: check-shebang-scripts-are-executable
- id: check-json
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
- id: pretty-format-json
args:
- --autofix
- id: trailing-whitespace
# - id: detect-aws-credentials
- id: name-tests-test
args:
- --pytest-test-first
#- id: no-commit-to-branch
# args:
# - --branch
# - main
- repo: https://github.com/python-poetry/poetry
rev: '1.8.0'
hooks:
- id: poetry-check
- id: poetry-lock
- id: poetry-install
- repo: local
hooks:
# Python
- id: ruff
name: Ruff
entry: poetry run python-ruff
language: python
language_version: "3.12"
types: [python]
require_serial: true
verbose: true
#- id: import-linter
# name: Import Linter
# entry: poetry run python-import-linter
# language: python
# language_version: "3.12"
# types: [python]
# require_serial: true
# verbose: true
#- id: python-tests
# name: Python Tests
# entry: poetry run python-all-tests
# language: python
# language_version: "3.12"
# types: [python]
# require_serial: true
# verbose: true
- id: python-type-check
name: Python Type Check
entry: poetry run python-type-check
language: python
language_version: "3.12"
types: [python]
require_serial: true
verbose: true