3rdparty: Fix Makefile coding conventions
This commit is contained in:
parent
8cd4fba777
commit
37eb90617a
1 changed files with 2 additions and 1 deletions
|
@ -144,6 +144,7 @@ class TabIssueTracker(LineIssueTracker):
|
|||
heading = "Tabs present:"
|
||||
files_exemptions = frozenset([
|
||||
"Makefile",
|
||||
"Makefile.inc",
|
||||
"generate_visualc_files.pl",
|
||||
])
|
||||
|
||||
|
@ -181,7 +182,7 @@ class IntegrityChecker(object):
|
|||
self.setup_logger(log_file)
|
||||
self.files_to_check = (
|
||||
".c", ".h", ".sh", ".pl", ".py", ".md", ".function", ".data",
|
||||
"Makefile", "CMakeLists.txt", "ChangeLog"
|
||||
"Makefile", "Makefile.inc", "CMakeLists.txt", "ChangeLog"
|
||||
)
|
||||
self.excluded_directories = ['.git', 'mbed-os']
|
||||
self.excluded_paths = list(map(os.path.normpath, [
|
||||
|
|
Loading…
Reference in a new issue