1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-25 07:48:10 +00:00

chore: fix pylint ignore list

This commit is contained in:
matejcik 2022-02-14 14:22:17 +01:00 committed by matejcik
parent b9bbd5fcd7
commit a532bf0737
4 changed files with 19 additions and 20 deletions

View File

@ -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 )

View File

@ -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,

View File

@ -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

View File

@ -1,7 +1,7 @@
^\./common/
^\./core/src/
^\./crypto/
^\./legacy/
^\./storage/
^\./tests/
^\./ci/
^common/
^core/src/
^crypto/
^legacy/
^storage/
^tests/
^ci/