Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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‎

Lines changed: 3 additions & 1 deletion
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)

AltStyle によって変換されたページ (->オリジナル) /