mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-24 23:38:09 +00:00
chore: fix pylint ignore list
This commit is contained in:
parent
b9bbd5fcd7
commit
a532bf0737
2
Makefile
2
Makefile
@ -5,7 +5,7 @@ help: ## show this help
|
||||
|
||||
## style commands:
|
||||
|
||||
PY_FILES = $(shell find . -type f -name '*.py' | grep -f ./tools/style.py.include | grep -v -f ./tools/style.py.exclude )
|
||||
PY_FILES = $(shell find . -type f -name '*.py' | sed 'sO^\./OO' | grep -f ./tools/style.py.include | grep -v -f ./tools/style.py.exclude )
|
||||
C_FILES = $(shell find . -type f -name '*.[ch]' | grep -f ./tools/style.c.include | grep -v -f ./tools/style.c.exclude )
|
||||
|
||||
|
||||
|
17
setup.cfg
17
setup.cfg
@ -56,20 +56,19 @@ python_version = 3.10
|
||||
|
||||
[pylint.MASTER]
|
||||
ignore-paths=
|
||||
./core/src/all_modules.py,
|
||||
./core/src/apps/ethereum/tokens.py,
|
||||
./core/src/trezor/res/resources.py,
|
||||
./core/src/trezor/messages.py,
|
||||
./core/src/trezor/enums,
|
||||
./crypto,
|
||||
./legacy,
|
||||
./storage,
|
||||
core/src/all_modules.py,
|
||||
core/src/apps/ethereum/tokens.py,
|
||||
core/src/trezor/res/resources.py,
|
||||
core/src/trezor/messages.py,
|
||||
core/src/trezor/enums,
|
||||
crypto,
|
||||
legacy,
|
||||
storage,
|
||||
fail-under=10.0
|
||||
jobs=0
|
||||
|
||||
[pylint."MESSAGE CONTROL"]
|
||||
disable=all
|
||||
|
||||
enable=
|
||||
assignment-from-none,
|
||||
chained-comparison,
|
||||
|
@ -1,3 +1,3 @@
|
||||
^\./legacy/firmware/protob/messages_pb2\.py
|
||||
^\./legacy/firmware/protob/messages_nem_pb2\.py
|
||||
^\./legacy/vendor
|
||||
^legacy/firmware/protob/messages_pb2\.py
|
||||
^legacy/firmware/protob/messages_nem_pb2\.py
|
||||
^legacy/vendor
|
||||
|
@ -1,7 +1,7 @@
|
||||
^\./common/
|
||||
^\./core/src/
|
||||
^\./crypto/
|
||||
^\./legacy/
|
||||
^\./storage/
|
||||
^\./tests/
|
||||
^\./ci/
|
||||
^common/
|
||||
^core/src/
|
||||
^crypto/
|
||||
^legacy/
|
||||
^storage/
|
||||
^tests/
|
||||
^ci/
|
||||
|
Loading…
Reference in New Issue
Block a user