forked from great-expectations/great_expectations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
41 lines (38 loc) · 977 Bytes
/
setup.cfg
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
[easy_install]
[bdist_wheel]
universal=0
[versioneer]
VCS = git
style = pep440
versionfile_source = great_expectations/_version.py
versionfile_build = great_expectations/_version.py
tag_prefix =
parentdir_prefix = great_expectations-
[flake8]
exclude = .git,
build,
tests/*,
docs/*,
build/*,
assets/*,
contrib/*,
versioneer*,
examples/*,
# TODO: remove the items below and fix linting issues
great_expectations/checkpoint,
great_expectations/jupyter_ux,
great_expectations/execution_engine,
great_expectations/cli,
great_expectations/expectations,
great_expectations/dataset,
great_expectations/render,
scripts/*,
per-file-ignores =
*/__init__.py: F401
# E501 - line length (black)
# E203 - whitespace before : (conflicts with black)
# E402 - module level import not at top of file: (isort)
extend-ignore = E501,E203,E402
# https://github.com/pycqa/mccabe
# TODO: reduce this to 10
max-complexity = 15