diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-03-31 12:31:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 12:31:43 +0200 |
commit | 047cdea7fa24e2e9e73a9f65064cfe97b820184c (patch) | |
tree | b4ce4cea5a18360fe97808c354d8764902741d4a /misc/scripts/fix_style.sh | |
parent | ece425ace4f5d6a684d3f04bae65f3e179393d85 (diff) | |
parent | e5033d39523abd7bcf14b6d2886b659613cea78f (diff) |
Merge pull request #37458 from akien-mga/doc-displayserver-window-sync
doc: Sync classref with DisplayServer/Window changes
Diffstat (limited to 'misc/scripts/fix_style.sh')
-rwxr-xr-x | misc/scripts/fix_style.sh | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/misc/scripts/fix_style.sh b/misc/scripts/fix_style.sh index b33cb0a7b4..2eee61a459 100755 --- a/misc/scripts/fix_style.sh +++ b/misc/scripts/fix_style.sh @@ -1,9 +1,10 @@ #!/usr/bin/env bash # Command line arguments +run_black=false run_clang_format=false run_fix_headers=false -usage="Invalid argument. Usage:\n$0 <option>\n\t--clang-format|-c\n\t--headers|-h\n\t--all|-a" +usage="Invalid argument. Usage:\n$0 <option>\n\t--black|-b\n\t--clang-format|-c\n\t--headers|-h\n\t--all|-a" if [ -z "$1" ]; then echo -e $usage @@ -12,6 +13,9 @@ fi while [ $# -gt 0 ]; do case "$1" in + --black|-b) + run_black=true + ;; --clang-format|-c) run_clang_format=true ;; @@ -19,6 +23,7 @@ while [ $# -gt 0 ]; do run_fix_headers=true ;; --all|-a) + run_black=true run_clang_format=true run_fix_headers=true ;; @@ -32,6 +37,19 @@ done echo "Removing generated files, some have binary data and make clang-format freeze." find -name "*.gen.*" -delete +# Apply black +if $run_black; then + echo -e "Formatting Python files..." + PY_FILES=$(find \( -path "./.git" \ + -o -path "./thirdparty" \ + \) -prune \ + -o \( -name "SConstruct" \ + -o -name "SCsub" \ + -o -name "*.py" \ + \) -print) + black -l 120 $PY_FILES +fi + # Apply clang-format if $run_clang_format; then # Sync list with pre-commit hook |