1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(tools): prettier formatting (#6206)

This commit is contained in:
Mark Tiedemann 2020-06-09 17:50:41 +02:00 committed by GitHub
parent 6e75254abb
commit 314f666897
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
Deno uses [Rust's Code of
Conduct](https://www.rust-lang.org/policies/code-of-conduct). In the
forums, every community member must follow the rules and values expressed
Deno uses
[Rust's Code of Conduct](https://www.rust-lang.org/policies/code-of-conduct). In
the forums, every community member must follow the rules and values expressed
there. Please email ry@tinyclouds.org to report any instance of misconduct.

View file

@ -64,8 +64,8 @@ def prettier():
while len(source_files) > 0:
command.append(source_files.pop())
if len(" ".join(command)) > max_command_length:
run(command, shell=False, quiet=True)
break
run(command, shell=False, quiet=True)
def yapf():