forked from dbt-msft/dbt-sqlserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
98 lines (98 loc) · 2.41 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
default_language_version:
python: python3.10
repos:
- repo: 'https://github.com/pre-commit/pre-commit-hooks'
rev: v4.4.0
hooks:
- id: check-yaml
args:
- '--unsafe'
- id: check-json
- id: end-of-file-fixer
- id: trailing-whitespace
exclude_types:
- markdown
- id: check-case-conflict
- id: check-ast
- id: check-builtin-literals
- id: check-merge-conflict
- id: no-commit-to-branch
- id: fix-byte-order-marker
- id: mixed-line-ending
- id: check-docstring-first
- repo: 'https://github.com/adrienverge/yamllint'
rev: v1.32.0
hooks:
- id: yamllint
args:
- '-d {extends: default, rules: {line-length: disable, document-start: disable}}'
- '-s'
- repo: 'https://github.com/MarcoGorelli/absolufy-imports'
rev: v0.3.1
hooks:
- id: absolufy-imports
- repo: 'https://github.com/hadialqattan/pycln'
rev: v2.1.3
hooks:
- id: pycln
args:
- '--all'
- repo: 'https://github.com/pycqa/isort'
rev: 5.12.0
hooks:
- id: isort
args:
- '--profile'
- black
- '--atomic'
- '--line-length'
- '99'
- '--python-version'
- '39'
- repo: 'https://github.com/psf/black'
rev: 23.3.0
hooks:
- id: black
args:
- '--line-length=99'
- '--target-version=py39'
- id: black
alias: black-check
stages:
- manual
args:
- '--line-length=99'
- '--target-version=py310'
- '--check'
- '--diff'
- repo: 'https://github.com/pycqa/flake8'
rev: 6.0.0
hooks:
- id: flake8
args:
- '--max-line-length=99'
- id: flake8
args:
- '--max-line-length=99'
alias: flake8-check
stages:
- manual
- repo: 'https://github.com/pre-commit/mirrors-mypy'
rev: v1.3.0
hooks:
- id: mypy
args:
- '--show-error-codes'
- '--ignore-missing-imports'
- '--explicit-package-bases'
files: '^dbt/adapters'
- id: mypy
alias: mypy-check
stages:
- manual
args:
- '--show-error-codes'
- '--pretty'
- '--ignore-missing-imports'
- '--explicit-package-bases'
files: '^dbt/adapters'