1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

Change rustfmt flags. For v0.8.2.

This commit is contained in:
Ryan Dahl 2018-08-05 18:28:05 -04:00
parent 7895964ee1
commit 4a1ccdeadb

View file

@ -29,7 +29,6 @@ run(["node", prettier, "--write"] + find_exts("js/", ".js", ".ts") +
rustfmt_extra_args = []
if 'RUSTFMT_FLAGS' in os.environ:
rustfmt_extra_args += os.environ['RUSTFMT_FLAGS'].split()
run([
"rustfmt", "--config-path", rustfmt_config, "--error-on-unformatted",
"--write-mode", "overwrite"
] + rustfmt_extra_args + find_exts("src/", ".rs"))
# Requires rustfmt 0.8.2 (flags were different in previous versions)
run(["rustfmt", "--config-path", rustfmt_config] + rustfmt_extra_args +
find_exts("src/", ".rs"))