-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.cfg
41 lines (35 loc) · 1.08 KB
/
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
[flake8]
# References:
# https://flake8.readthedocs.io/en/latest/user/configuration.html
# https://flake8.readthedocs.io/en/latest/user/error-codes.html
# Aligned with black https://github.com/psf/black/blob/main/.flake8
extend-ignore = E203, E266, E501
# Note: there cannot be spaces after commas here
exclude = __init__.py,versioneer.py
ignore =
# Import formatting
E4,
# Assigning lambda expression
E731,
# line break before binary operator
W503,
per-file-ignores =
**/tests/*:
# local variable is assigned to but never used
F841,
# Ambiguous variable name
E741,
max-line-length = 88
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[versioneer]
VCS = git
style = pep440
versionfile_source = dask_sphinx_theme/_version.py
versionfile_build = dask_sphinx_theme/_version.py
tag_prefix =
parentdir_prefix = dask-sphinx-theme-
[options.entry_points]
pygments.styles =
dask = dask_sphinx_theme._pygments.style:DaskStyle