diff options
author | embeddedt <42941056+embeddedt@users.noreply.github.com> | 2022-02-13 13:59:17 -0500 |
---|---|---|
committer | embeddedt <42941056+embeddedt@users.noreply.github.com> | 2022-02-13 13:59:17 -0500 |
commit | 9771050b99f4f7bf6ea5197153ed540104a7a9f3 (patch) | |
tree | 955b6ce887d9214bdcb40d41b520b1d15975496c /scripts/code-format.py | |
parent | ba38a4bb762881d9d36f9d4fc3d741050ef86012 (diff) | |
download | lvgl-9771050b99f4f7bf6ea5197153ed540104a7a9f3.tar.gz lvgl-9771050b99f4f7bf6ea5197153ed540104a7a9f3.zip |
chore(format) add formatting for examples & demos, merge test config
Diffstat (limited to 'scripts/code-format.py')
-rwxr-xr-x | scripts/code-format.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/code-format.py b/scripts/code-format.py index dd025a2e9..fef9eb66a 100755 --- a/scripts/code-format.py +++ b/scripts/code-format.py @@ -3,4 +3,6 @@ import os os.system('astyle --options=code-format.cfg "../src/*.c,*.h"') -os.system('astyle --options=code-format-tests.cfg "../tests/src/test_cases/*.c"') +os.system('astyle --options=code-format.cfg "../demos/*.c,*.h"') +os.system('astyle --options=code-format.cfg "../examples/*.c,*.h"') +os.system('astyle --options=code-format.cfg "../tests/src/test_cases/*.c"') |