Things found on
<https://wiki.debian.org/HowToPackageForDebian#Check_points_for_any_package>
but not included here yet::

   find ! -type d | xargs file  | grep ': *ELF ' | sed 's/: +*.*//' | xargs --no-run-if-empty eu-elflint --quiet --gnu-ld --strict
   grep -r 'PATH' .
   grep -r 'x86_64-linux-gnu' .

Add syntax checkers from the syntastic vim plugin:

https://github.com/scrooloose/syntastic/tree/master/syntax_checkers

Add checkers from the fedora-review tool:

https://git.fedorahosted.org/cgit/FedoraReview.git

Some (all?) wildcards should be case-insensitive.

Wildcards is not always an adequate mechanisms for detecting file types. Think
of Python or Perl scripts without extensions, or ELF binaries.

A mechanisms for filtering output is needed.

Only inform about a skipped check if there were actually matching files.

A mechanism to specify the amount/pedanticness of the output.

.. vim:ts=3 sw=3 et ft=rst
