forked from boschglobal/doxysphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
29 lines (28 loc) · 767 Bytes
/
.flake8
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
## =====================================================================================
## C O P Y R I G H T
## -------------------------------------------------------------------------------------
## Copyright (c) 2022 by Robert Bosch GmbH. All rights reserved.
##
## Author(s):
## - Markus Braun, :em engineering methods AG (contracted by Robert Bosch GmbH)
## =====================================================================================
[flake8]
max-line-length = 120
ignore = D203
exclude = .git,
.build,
.devcontainer,
.github,
.idea,
.package,
.pytest_cache,
.venv,
.vscode,
dist,
docs,
demo,
tests
max-complexity = 10
select = C,E,F,W,B,B950
extend-ignore = E203, E501
docstring-convention=pep257