generated from hexlet-boilerplates/python-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
26 lines (23 loc) · 912 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
[flake8]
accept-encodings = utf-8
max-complexity = 6
statistics = False
max-line-length = 100
doctests = True
enable-extensions = G
isort-show-traceback = True
exclude = graph_algorithms/data_structure/priority_queue/heapdict
ignore = I005, I004, I003, I001, WPS214, WPS420, D208, E501, E800
per-file-ignores =
graph_algorithms/algorithms/dfs/dfs_iterative.py: WPS440, WPS441, WPS507
graph_algorithms/data_structure/distance.py: WPS502
graph_algorithms/algorithms/bfs/queue.py: WPS507
graph_algorithms/exception/messages.py: DAR101
graph_algorithms/algorithms/dijkstra/dijkstra.py: WPS347, WPS507, WPS201
graph_algorithms/data_structure/priority_queue/priority_queue.py: WPS507
graph_algorithms/algorithms/bellman_ford/bellman_ford.py: WPS518
[isort]
# See https://github.com/timothycrosley/isort#multi-line-output-modes
multi_line_output = 3
include_trailing_comma = true
default_section = FIRSTPARTY