Skip to content

Commit

Permalink
Exclude ASM Files and config files from header check
Browse files Browse the repository at this point in the history
  • Loading branch information
Soren Ptak committed Aug 31, 2023
1 parent ff4f782 commit 8abe331
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/scripts/kernel_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
KERNEL_IGNORED_FILES = [
'FreeRTOS-openocd.c',
'Makefile',
'.DS_Store'
'.DS_Store',
'cspell.config.yaml'
]

KERNEL_IGNORED_EXTENSIONS = [
Expand Down Expand Up @@ -88,7 +89,10 @@
r'.*portable/IAR/AtmelSAM7S64/.*AT91SAM7.*',
r'.*portable/GCC/ARM7_AT91SAM7S/.*',
r'.*portable/MPLAB/PIC18F/stdio.h',
r'.*portable/ThirdParty/xClang/XCOREAI/*'
r'.*portable/ThirdParty/xClang/XCOREAI/*',
r'.*IAR/ARM_C*',
r'.*IAR/78K0R/*',
r'.*CCS/MSP430X/*'
]

KERNEL_THIRD_PARTY_PATTERNS = [
Expand Down

0 comments on commit 8abe331

Please sign in to comment.