forked from snowflakedb/snowflake-connector-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
130 lines (130 loc) · 3.66 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
exclude: '^src/snowflake/connector/vendored.*$'
repos:
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
exclude: >
(?x)^(
src/snowflake/connector/nanoarrow_cpp/ArrowIterator/flatcc/.*\.h|
src/snowflake/connector/nanoarrow_cpp/ArrowIterator/nanoarrow_ipc.c|
)$
- id: end-of-file-fixer
exclude: >
(?x)^(
license_header.txt|
src/snowflake/connector/nanoarrow_cpp/ArrowIterator/flatcc/.*\.h|
)$
- id: check-yaml
exclude: .github/repo_meta.yaml
- id: debug-statements
- id: check-ast
- repo: https://github.com/Lucas-C/pre-commit-hooks.git
rev: v1.5.1
hooks:
- id: insert-license
name: insert-py-license
files: >
(?x)^(
src/snowflake/connector/.*\.pyx?|
test/.*\.py|
)$
exclude: >
(?x)^(
src/snowflake/connector/version.py|
src/snowflake/connector/cpp|
src/snowflake/connector/nanoarrow_cpp|
)$
args:
- --license-filepath
- license_header.txt
- id: insert-license
name: insert-cpp-license
files: >
(?x)^(
src/snowflake/connector/cpp/.*\.(cpp|hpp)|
src/snowflake/connector/nanoarrow_cpp/.*\.(cpp|hpp)|
)$
args:
- --comment-style
- //
- --license-filepath
- license_header.txt
exclude: >
(?x)^(
src/snowflake/connector/nanoarrow_cpp/ArrowIterator/nanoarrow.hpp|
)$
- repo: https://github.com/asottile/yesqa
rev: v1.5.0
hooks:
- id: yesqa
- repo: https://github.com/mgedmin/check-manifest
rev: "0.49"
hooks:
- id: check-manifest
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
- id: isort
- id: isort
name: insert future imports
args:
- -a
- from __future__ import annotations
- --append-only
files: ^src/snowflake/connector/.*\.py$
- repo: https://github.com/asottile/pyupgrade
rev: v3.7.0
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.4.0'
hooks:
- id: mypy
files: |
(?x)^src/snowflake/connector/(
constants
| compat
| dbapi
| description
| errorcode
| feature
| file_compression_type
| file_util
| gzip_decoder
| proxy
| secret_detector
| sfbinaryformat
| snow_logging
| sqlstate
| ssd_internal_keys
| test_util
| util_text
| url_util
| version
| config_parser
).py$
additional_dependencies:
- types-requests
- types-urllib3
- types-setuptools
- types-pyOpenSSL
- types-setuptools
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
args:
- --safe
language_version: python3