-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.cfg
More file actions
30 lines (29 loc) · 770 Bytes
/
setup.cfg
File metadata and controls
30 lines (29 loc) · 770 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
25
26
27
28
29
30
[bdist_wheel]
universal=1
[flake8]
per-file-ignores =
# Special case: names are reimported from __init__.py, so unused imports are expected.
src/vitessce/__init__.py: F401
src/vitessce/data_utils/__init__.py: F401
src/vitessce/widget_plugins/__init__.py: F401
ignore =
# Ignore line too long
E501,
# Ignore invalid escape sequence '\*'
W605,
# Ignore line break before binary operator: Skim down the left edge to understand intent.
W503,
# Ignore continuation line over-indented for visual indent
E127
# Ignore continuation line under-indented for visual indent
E128
exclude =
./js/node_modules/,
./tests-widget/,
./docs/,
./demos/,
./binder/,
./.venv/,
./docs/notebooks/.ipynb_checkpoints/,
./build/,
./.ipynb_checkpoints/