mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00
Merge pull request #588 from antonio-nino-diaz-arm/an/ignore-check-md
Fix style check and remove markdown files from it
This commit is contained in:
commit
af984eefd7
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -112,10 +112,10 @@ CHECK_IGNORE := --ignore COMPLEX_MACRO \
|
|||
--ignore GIT_COMMIT_ID
|
||||
CHECKPATCH_ARGS := --no-tree --no-signoff ${CHECK_IGNORE}
|
||||
CHECKCODE_ARGS := --no-patch --no-tree --no-signoff ${CHECK_IGNORE}
|
||||
# Do not check the coding style on C library files
|
||||
# Do not check the coding style on C library files or documentation files
|
||||
INCLUDE_DIRS_TO_CHECK := $(sort $(filter-out include/stdlib, $(wildcard include/*)))
|
||||
LIB_DIRS_TO_CHECK := $(sort $(filter-out lib/stdlib, $(wildcard lib/*)))
|
||||
ROOT_DIRS_TO_CHECK := $(sort $(filter-out lib include, $(wildcard *))))
|
||||
ROOT_DIRS_TO_CHECK := $(sort $(filter-out lib include docs %.md, $(wildcard *)))
|
||||
CHECK_PATHS := ${ROOT_DIRS_TO_CHECK} ${INCLUDE_DIRS_TO_CHECK} ${LIB_DIRS_TO_CHECK}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue