-
Notifications
You must be signed in to change notification settings - Fork 537
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
129 lines (129 loc) · 3.77 KB
/
.pre-commit-config.yaml
File metadata and controls
129 lines (129 loc) · 3.77 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
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
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: v6.0.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: >
(?x)^(
.github/repo_meta.yaml|
ci/anaconda/recipe/meta.yaml|
)$
- id: debug-statements
- id: check-ast
- repo: https://github.com/asottile/yesqa
rev: v1.5.0
hooks:
- id: yesqa
- repo: https://github.com/mgedmin/check-manifest
rev: "0.50"
hooks:
- id: check-manifest
- repo: https://github.com/PyCQA/isort
rev: 7.0.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.21.2
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: local
hooks:
- id: check-no-native-http
name: Check for native HTTP calls
entry: python ci/pre-commit/check_no_native_http.py
language: system
files: ^src/snowflake/connector/.*\.py$
exclude: |
(?x)^(
src/snowflake/connector/session_manager\.py|
src/snowflake/connector/aio/_session_manager\.py|
src/snowflake/connector/vendored/.*
)$
args: [--show-fixes]
- id: check-optional-imports
name: Check for direct imports of modules which might be unavailable
entry: python ci/pre-commit/check_optional_imports.py
language: system
files: ^src/snowflake/connector/.*\.py$
exclude: src/snowflake/connector/options.py
args: [--show-fixes]
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.13.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: 24.10.0
hooks:
- id: black
args:
- --safe
language_version: python3
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.3
hooks:
- id: clang-format
types_or: [c++, c]
exclude: >
(?x)^(
src/snowflake/connector/nanoarrow_cpp/ArrowIterator/flatcc/.*\.h|
)$