0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-29 08:58:01 -04:00

Make format.py less verbose.

This commit is contained in:
Ryan Dahl 2018-10-30 15:08:50 -04:00
parent 80b5c61460
commit 0fbee30f05

View file

@ -16,22 +16,34 @@ rustfmt_config = os.path.join(tools_path, "rustfmt.toml")
os.chdir(root_path)
run([clang_format_path, "-i", "-style", "Google"] +
def qrun(cmd, env=None):
run(cmd, quiet=True, env=env)
print "clang_format"
qrun([clang_format_path, "-i", "-style", "Google"] +
find_exts(["libdeno"], [".cc", ".h"]))
print "gn format"
for fn in ["BUILD.gn", ".gn"] + find_exts(["build_extra"], [".gn", ".gni"]):
run(["third_party/depot_tools/gn", "format", fn], env=google_env())
qrun(["third_party/depot_tools/gn", "format", fn], env=google_env())
run([sys.executable, "third_party/python_packages/bin/yapf", "-i"] + find_exts(
print "yapf"
qrun(
[sys.executable, "third_party/python_packages/bin/yapf", "-i"] + find_exts(
["tools", "build_extra"], [".py"], skip=["tools/clang"]),
env=python_env())
run(["node", prettier, "--write"] + ["rollup.config.js"] + glob("*.json") +
glob("*.md") + find_exts([".github", "js", "tests", "tools", "website"],
print "prettier"
qrun(["node", prettier, "--write", "--loglevel=error"] + ["rollup.config.js"] +
glob("*.json") + glob("*.md") +
find_exts([".github", "js", "tests", "tools", "website"],
[".js", ".json", ".ts", ".md"],
skip=["tools/clang"]))
run([
print "rustfmt"
qrun([
"third_party/rustfmt/" + platform() +
"/rustfmt", "--config-path", rustfmt_config
] + find_exts(["src"], [".rs"]))