-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.cfg
37 lines (35 loc) · 1 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
[flake8]
max-line-length = 120
show_source = True
exclude = venv
src/cpp_dl_benchmark/thirdparty
src/inference/configs/pytorch_configs/yolo-v7
docstring-convention = google
enable-extensions=G
per-file-ignores =
__init__.py:F401,
src/csv2html/benchmark_table_creator.py:P101,P103,A001,VNE003,N400
src/csv2html/accuracy_checker_table_creator.py:P101,P103,A001,VNE003,N400
src/inference/io_adapter.py:S001
src/inference/configs/onnx_configs/stable_diffusion.py:E501
ignore =
# ECE001: Expression is too complex
ECE001,
# CCE001: class attributes order
CCE001,
# VNE001: single letter variable names
VNE001,
# VNE002: variable name should be clarified
VNE002,
# W503: line break before binary operator.
W503,
# E126 continuation line over-indented for hanging indent
E126
# T201: print found
T201,
# B024: abstract base class with no abstract methods
B024,
[pydocstyle]
convention = google
[tool:pytest]
junit_family = xunit1