aboutsummaryrefslogtreecommitdiff
path: root/scripts/code-format.py
diff options
context:
space:
mode:
authorGabor Kiss-Vamosi <kisvegabor@gmail.com>2022-04-26 10:45:12 +0200
committerGabor Kiss-Vamosi <kisvegabor@gmail.com>2022-04-26 10:45:12 +0200
commit318146a2c25362eabf258470be263a4cfeaefe87 (patch)
treef53ab61e85cfb619599b2c19f79efc7ed866c038 /scripts/code-format.py
parent69aa421acd78e0d3809200b9bc1f21c8586f5cf0 (diff)
downloadlvgl-318146a2c25362eabf258470be263a4cfeaefe87.tar.gz
lvgl-318146a2c25362eabf258470be263a4cfeaefe87.zip
feat(draw): support transforming widgets and improfe sw transform
For details see: https://docs.lvgl.io/master/overview/style.html
Diffstat (limited to 'scripts/code-format.py')
-rwxr-xr-xscripts/code-format.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/code-format.py b/scripts/code-format.py
index 42faee6ee..fc126c8df 100755
--- a/scripts/code-format.py
+++ b/scripts/code-format.py
@@ -2,7 +2,14 @@
import os
+print("Formatting src")
os.system('astyle --options=code-format.cfg --recursive "../src/*.c,*.h"')
+
+print("\nFormatting demos")
os.system('astyle --options=code-format.cfg --recursive "../demos/*.c,*.h"')
+
+print("\nFormatting examples")
os.system('astyle --options=code-format.cfg --recursive "../examples/*.c,*.h"')
+
+print("\nFormatting tests")
os.system('astyle --options=code-format.cfg --recursive "../tests/src/test_cases/*.c"')