Nick Mathewson 5fd137c482 Merge remote-tracking branch 'tor-github/pr/1358' 4 роки тому
..
testdata 1c67d261d5 practracker: Integration test for --list-overbroad 4 роки тому
.enable_practracker_in_hooks 71e5af0221 pre-push hook: Only run practracker when a special file is present 4 роки тому
README e3f7e5e65e practracker: make filename terminology uniform 4 роки тому
exceptions.txt 5fd137c482 Merge remote-tracking branch 'tor-github/pr/1358' 4 роки тому
includes.py e3f7e5e65e practracker: make filename terminology uniform 4 роки тому
metrics.py 03040903e6 practracker: handle empty files. 4 роки тому
practracker.py 7157d80c6f Merge branch 'tor-github/pr/1337' 4 роки тому
practracker_tests.py 5d98b54725 Port practracker unit tests to python 3 4 роки тому
problem.py d1ffac3f8a practracker: An exception is "used" even when it is violated. 4 роки тому
test_practracker.sh 1c67d261d5 practracker: Integration test for --list-overbroad 4 роки тому
util.py 25d55fa01e Practracker: do not list problems when told to --list-overbroad. 4 роки тому

README

Practracker is a simple python tool that keeps track of places where
our code is ugly, and tries to warn us about new ones or ones that
get worse.

Right now, practracker looks for the following kinds of
best-practices violations:

.c files greater than 3000 lines long
.h files greater than 500 lines long
.c files with more than 50 includes
.h files with more than 15 includes

All files that include a local header not listed in a .may_include
file in the same directory, when that .may_include file has an
"!advisory" marker.

The list of current violations is tracked in exceptions.txt; slight
deviations of the current exceptions cause warnings, whereas large
ones cause practracker to fail.

For usage information, run "practracker.py --help".