teor 7e111d0eaa practracker: print a notice to stderr when disabled преди 4 години
..
testdata 1c67d261d5 practracker: Integration test for --list-overbroad преди 4 години
README e3f7e5e65e practracker: make filename terminology uniform преди 4 години
exceptions.txt 95e3527df0 Bump practracker exception limit for process_win32_exec(). преди 4 години
includes.py e3f7e5e65e practracker: make filename terminology uniform преди 4 години
metrics.py 03040903e6 practracker: handle empty files. преди 4 години
practracker.py 7e111d0eaa practracker: print a notice to stderr when disabled преди 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 6b1592b564 test_practracker.sh: never disable practracker преди 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".