forked from XuehaiPan/nvitop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
36 lines (36 loc) · 933 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
30
31
32
33
34
35
36
[flake8]
max-line-length = 120
max-doc-length = 100
select = B,C,E,F,W,Y,SIM
ignore =
# E203: whitespace before ':'
# E241: whitespace after ':'
# E704: multiple statements on one line (def)
# W503: line break before binary operator
# W504: line break after binary operator
# format by black
E203,E241,E704,W503,W504,
# E501: line too long
# W505: doc line too long
# too long docstring due to long example blocks
E501,W505,
# SIM105: Use 'contextlib.suppress(...)'
# prefer try-except block
SIM105,
per-file-ignores =
# F401: module imported but unused
# intentionally unused imports
__init__.py: F401
nvitop/api/host.py: F401
nvitop/api/libnvml.py: F401
# SIM113: use enumarate
# false positive
nvitop/gui/screens/main/process.py: SIM113
exclude =
.git,
.vscode,
venv,
__pycache__,
docs/source/conf.py,
build,
dist