-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.cfg
More file actions
24 lines (23 loc) · 889 Bytes
/
setup.cfg
File metadata and controls
24 lines (23 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[bdist_wheel]
universal=1
[flake8]
per-file-ignores =
# Special case: names are reimported from __init__.py, so unused imports are expected.
vitessce/__init__.py: F401
vitessce/data_utils/__init__.py: F401
vitessce/data_utils/anndata/__init__.py: F401
vitessce/data_utils/multivec/__init__.py: F401
vitessce/data_utils/ome_tiff/__init__.py: F401
vitessce/data_utils/ome_zarr/__init__.py: F401
vitessce/data_utils/ucsc_cellbrowser/__init__.py: F401
ignore =
E501, # Ignore line too long
W605, # Ignore invalid escape sequence '\*'
W503, # Ignore line break before binary operator: Skim down the left edge to understand intent.
E127 # Ignore continuation line over-indented for visual indent
E128 # Ignore continuation line under-indented for visual indent
exclude =
./js/node_modules/,
./docs/notebooks/.ipynb_checkpoints/,
./build/,
./.ipynb_checkpoints/