-
Notifications
You must be signed in to change notification settings - Fork 208
/
.pre-commit-config.yaml
68 lines (67 loc) · 2.16 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
## See https://pre-commit.com for more information
## See https://pre-commit.com/hooks.html for more hooks
files: ^soda/
exclude: antlr/
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: check-added-large-files
- id: check-json
- id: check-ast
- id: check-merge-conflict
- id: check-toml
- id: check-yaml
exclude: soda/scientific/tests/assets/
args: [--unsafe]
- id: debug-statements
- id: detect-private-key
- id: end-of-file-fixer
- repo: https://github.com/PyCQA/autoflake
rev: v2.3.1
hooks:
- id: autoflake
args: ["--in-place", "--remove-all-unused-imports"]
- repo: https://github.com/asottile/pyupgrade
rev: v3.18.0
hooks:
- id: pyupgrade
exclude: _models?\.py$
args: [--py38-plus, --keep-runtime-typing]
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
hooks:
- id: isort
additional_dependencies: [toml]
name: Sort imports using isort
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
name: Run black formatter
language_version: python3
#
# This is a very useful one, but we need to update dependencies first.
# - repo: https://github.com/Lucas-C/pre-commit-hooks-bandit
# rev: v1.0.5
# hooks:
# - id: python-bandit-vulnerability-check
#
# Too opinionated and iin conflict with black, consider using some parts if possible
# - repo: https://github.com/pycqa/flake8
# rev: 4.0.1
# hooks:
# - id: flake8
# name: Run flake8 linter
# additional_dependencies:
# ["flake8-bugbear==22.1.11", "pep8-naming==0.12.1"]
# args: ["--exclude", "core/sodasqlv3/scan/yaml/parser/*.py"]
#
# Many issues reported by mypy, consider iterating towards that standard and enable
# - repo: https://github.com/pre-commit/mirrors-mypy
# rev: v0.931
# hooks:
# - id: mypy
# name: mypy-core
# # exclude: (packages/|core/sodasqlv3/scan/yaml/parser/.*\.py) # See CONTRIBUTING.md on MyPy