Skip to content

Commit 8abe331

Browse files
author
Soren Ptak
committed
Exclude ASM Files and config files from header check
1 parent ff4f782 commit 8abe331

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/scripts/kernel_checker.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
KERNEL_IGNORED_FILES = [
3737
'FreeRTOS-openocd.c',
3838
'Makefile',
39-
'.DS_Store'
39+
'.DS_Store',
40+
'cspell.config.yaml'
4041
]
4142

4243
KERNEL_IGNORED_EXTENSIONS = [
@@ -88,7 +89,10 @@
8889
r'.*portable/IAR/AtmelSAM7S64/.*AT91SAM7.*',
8990
r'.*portable/GCC/ARM7_AT91SAM7S/.*',
9091
r'.*portable/MPLAB/PIC18F/stdio.h',
91-
r'.*portable/ThirdParty/xClang/XCOREAI/*'
92+
r'.*portable/ThirdParty/xClang/XCOREAI/*',
93+
r'.*IAR/ARM_C*',
94+
r'.*IAR/78K0R/*',
95+
r'.*CCS/MSP430X/*'
9296
]
9397

9498
KERNEL_THIRD_PARTY_PATTERNS = [

0 commit comments

Comments
 (0)