Skip to content

Commit dac0093

Browse files
committed
Add additional supported file extensions to formatter script
The `.ipp` and `.tpp` file extensions, commonly used for inline or template function definitions included in C++ header files, have now been added to the Arduino sketch specification as supported extensions. Even though it is unlikely such extensions will ever be used in the example sketches of this repository, it is best to be comprehensive in the extensions covered by the formatter script
1 parent 8e1ec35 commit dac0093

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples_formatter.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ find \
55
-name '*.c' -or \
66
-name '*.cpp' -or \
77
-name '*.h' -or \
8-
-name '*.ino' \
8+
-name '*.ino' -or \
9+
-name '*.ipp' -or \
10+
-name '*.tpp' \
911
\) \
1012
-type f \
1113
-exec \

0 commit comments

Comments
 (0)