Lines Matching full:files
36 ``suffix_exemptions``: files whose name ends with a string in this set
39 ``path_exemptions``: files whose path (relative to the root of the source
69 Files whose name ends with a string listed in ``self.suffix_exemptions``
122 To implement a checker that processes files line by line, inherit from
126 # Exclude binary files.
156 """Track files with a bad, missing or extraneous shebang line.
205 """Track files that end with an incomplete line
217 # This script only works on regular files. If we can't seek
226 """Track files that start with a UTF-8 BOM.
227 Files should be ASCII or UTF-8. Valid UTF-8 does not start with a BOM."""
275 # Which files are allowed to have a BOM is handled in
281 """Track files with non-Unix line endings (i.e. files with CR)."""
295 """Track files with non-Windows line endings (i.e. CR or LF not in CRLF)."""
377 # Files imported from TF-M, and not used except in test builds,
421 # top of files.
450 """Sanity-check files under the current directory."""
454 Check files under the current directory.
485 """Return the list of files to check.
487 These are the regular files commited into Git.
489 bytes_output = subprocess.check_output(['git', 'ls-files', '-z'])
493 # (it only knows about the files inside them), but there is
494 # at least one case where 'git ls-files' includes a directory:
498 # Prepend './' to files in the top-level directory so that
505 """Check all files for all issues."""