forked from holoviz/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
22 lines (20 loc) · 664 Bytes
/
setup.cfg
File metadata and controls
22 lines (20 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[metadata]
license_file = LICENSE.txt
[flake8]
# F - all pyflake errors
# E101 - indentation contains mixed spaces and tabs
# E111 - indentation is not a multiple of four
# E501 - line too long (see max-line-length)
# E722 - do not use bare except, specify exception instead
include = *.py
exclude = .git,__pycache__,.tox,.eggs,*.egg,doc,dist,build,_build,examples,.ipynb_checkpoints,node_modules,apps
ignore = E,W,F812
select = F,E101,E111,E501,E722
max-line-length = 165
per-file-ignores = panel/tests/ui/jupyter_server_test_config.py:F821
[isort]
force_grid_wrap=4
multi_line_output=5
combine_as_imports=True
lines_between_types=1
include_trailing_comma=True