-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
35 lines (33 loc) · 861 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
[flake8]
ignore =
# whitespace before ':' - doesn't work well with black
E203
E402
# line too long - let black worry about that
E501
# do not assign a lambda expression, use a def
E731
# line break before binary operator
W503
[isort]
profile = black
default_section = THIRDPARTY
known_first_party = ukb_gwas_pipeline_nealelab
known_third_party = dask,dask_cloudprovider,fire,fsspec,gcsfs,numpy,pandas,pyspark,retrying,sgkit,xarray,yaml,zarr
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88
[mypy-dask.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-zarr.*]
ignore_missing_imports = True
[mypy-gcsfs.*]
ignore_missing_imports = True