mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 02:46:28 +00:00
15 lines
334 B
TOML
15 lines
334 B
TOML
[tool.ruff]
|
|
# Exclude a variety of commonly ignored directories.
|
|
exclude = [
|
|
"*migrations/*",
|
|
"api/nick_generator/nick_generator.py",
|
|
]
|
|
|
|
[tool.coverage.run]
|
|
omit = [
|
|
# omit grpc proto from coverage reports
|
|
"api/lightning/*pb2*",
|
|
# omit test and mocks from coverage reports
|
|
"tests/*",
|
|
"manage.py",
|
|
] |