mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
Remove a handful of nuphar related configurations after deprecation. Co-authored-by: Randy Shuai <rashuai@microsoft.com>
27 lines
710 B
INI
27 lines
710 B
INI
[flake8]
|
|
max-line-length = 120
|
|
per-file-ignores =
|
|
__init__.py:F401
|
|
format = [flake8 PEP8 ERROR] %(path)s:%(row)d:%(col)d: %(code)s %(text)s
|
|
exclude =
|
|
# ignore the .git directory
|
|
./.git,
|
|
# ignore default build directory
|
|
./build,
|
|
# ignore external dependency files
|
|
./cmake/external,
|
|
# TODO enable
|
|
./docs/python,
|
|
# ignore generated flatbuffers code
|
|
./onnxruntime/core/flatbuffers/ort_flatbuffers_py,
|
|
# TODO enable
|
|
./onnxruntime/python/tools,
|
|
# ignore test code for now
|
|
./onnxruntime/test,
|
|
# TODO enable
|
|
./orttraining,
|
|
# ignore server code for now
|
|
./server,
|
|
# ignore issues from different git branches
|
|
./.git,
|
|
ignore = W503, E203
|