Lines Matching full:check
2 - check-package is the main engine, called by the user.
6 newline!) to the method check_line() of every check object.
11 - base.py contains the base class for all check functions.
12 - lib.py contains the classes for common check functions.
13 Each check function is explicitly included in a given type-parsing library.
14 Do not include every single check function in this file, a class that will
16 When a warning must be issued, the check function returns an array of strings.
23 - lib_type.py contains check functions specific to files of this type.
29 the check functions in alphabetical order, keep the imports in alphabetical
42 - do not check spacing in the input line in every single function. Trailing
53 - check the url displayed by the warning message works.
56 - to get a list of check functions that would be called without actually
58 $ utils/check-package --dry-run package/yourfavorite/*
60 - when you just added a new check function, e.g. Something, check how it behaves
62 $ utils/check-package --include-only Something $(find package -type f)
67 $ utils/check-package $(find package -type f) >/dev/null ; \
68 time utils/check-package $(find package -type f) >/dev/null
73 'set makeprg=utils/check-package\ $(cat\ filelist)' -c make -c copen