* [Python API] Move samples and docs to the new directory * move samples to the new directory * try to fix build and pychecks * fix links * fix pychecks * fix cmake * fix cpack installation * Update inference-engine/ie_bridges/python/CMakeLists.txt Co-authored-by: Sergey Lyubimtsev <sergey.lyubimtsev@intel.com> Co-authored-by: Sergey Lyubimtsev <sergey.lyubimtsev@intel.com>
19 lines
356 B
INI
19 lines
356 B
INI
[flake8]
|
|
filename = *.py
|
|
max-line-length = 160
|
|
ignore = E203
|
|
max-parameters-amount = 8
|
|
show_source = True
|
|
docstring-convention = google
|
|
enable-extensions = G
|
|
|
|
[pydocstyle]
|
|
convention = google
|
|
|
|
[mypy]
|
|
ignore_missing_imports = True
|
|
disable_error_code = attr-defined
|
|
show_column_numbers = True
|
|
show_error_context = True
|
|
show_absolute_path = True
|
|
pretty = True |