FEAT: ignore extensions for checks, linting, prettier (#1617)

This commit is contained in:
dni ⚡ 2023-04-13 07:57:14 +02:00 committed by GitHub
parent 95a718c6c0
commit cf3b169480
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,8 @@
*.yml
**/lnbits/extensions/*
**/lnbits/static/vendor
**/lnbits/static/bundle.*
**/lnbits/static/css/*

View File

@ -131,6 +131,7 @@ enable = [
[tool.pylint.MASTER]
ignore-paths = [
"^lnbits/extensions/.*$",
"^lnbits/wallets/lnd_grpc_files/.*$",
]
fail-under = 10.0

View File

@ -1,6 +1,6 @@
[flake8]
max-line-length = 300
exclude = lnbits/wallets/lnd_grpc_files/
exclude = lnbits/wallets/lnd_grpc_files/, lnbits/extensions/
ignore =
# E203 whitespace before ':'
E203,