forked from great-expectations/great_expectations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
32 lines (32 loc) · 975 Bytes
/
.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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: check-yaml
exclude: docs/.*|tests/data_context/fixtures/bad_yml/great_expectations\.yml
- id: end-of-file-fixer
exclude: docs/.*|tests/test_sets/broken_excel_file\.xls
- id: trailing-whitespace
exclude: docs/.*|tests/.*.fixture
- id: requirements-txt-fixer
exclude: docs/.*
- repo: https://github.com/timothycrosley/isort
rev: 5.4.2
hooks:
- id: isort
exclude: venv/.*\|docs/.*|tests/test_sets/broken_excel_file\.xls
- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black
exclude: docs/.*|tests/.*.fixture
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.3
hooks:
- id: flake8
files: ^(great_expectations/core)
- repo: https://github.com/asottile/pyupgrade
rev: v2.7.2
hooks:
- id: pyupgrade
args: ["--py3-plus"]