-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathformat.py
53 lines (39 loc) · 1.3 KB
/
format.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
from subprocess import check_call, CalledProcessError
def check_bash_call(string):
check_call(["bash", "-c", string])
def _run_format_and_flake8():
files_changed = False
try:
check_bash_call("python -m black --check ./")
except CalledProcessError:
check_bash_call("python -m black ./")
files_changed = True
try:
check_bash_call("buildifier -mode=check -r .")
except CalledProcessError:
check_bash_call("buildifier -r .")
files_changed = True
# todo: find a way to check if files changed
# see https://github.com/DoozyX/clang-format-lint-action for inspiration
check_bash_call(
"shopt -s globstar && clang-format-9 -i --style=google **/*.cc **/*.h",
)
if files_changed:
print("Some files have changed.")
print("Please do git add and git commit again")
else:
print("No formatting needed.")
print("Running flake8.")
check_bash_call("flake8")
print("Done")
if files_changed:
exit(1)
def run_format_and_flake8():
try:
_run_format_and_flake8()
except CalledProcessError as error:
print("Pre-commit returned exit code", error.returncode)
exit(error.returncode)
if __name__ == "__main__":
run_format_and_flake8()