mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-06 09:00:02 -06:00
20 lines
361 B
INI
20 lines
361 B
INI
[report]
|
|
exclude_lines =
|
|
# Don't complain about defensive assertions
|
|
raise NotImplementedError
|
|
raise AssertionError
|
|
|
|
# Don't complain about non-runnable code
|
|
if __name__ == .__main__.:
|
|
|
|
omit =
|
|
/usr/*
|
|
py_env/*
|
|
*/__init__.py
|
|
|
|
# Ignore test coverage
|
|
tests/*
|
|
|
|
# Don't complain about our pre-commit file
|
|
pre-commit.py
|