summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Tiedemann <www.marktiedemann@gmail.com>2020-06-09 17:50:41 +0200
committerGitHub <noreply@github.com>2020-06-09 17:50:41 +0200
commit314f666897e63ab9f982726724a7e4af1ca798a8 (patch)
tree3a605e22552f5bdf7f8f3c70290255cc8e3bd345
parent6e75254abb1d97541b1ce7a924a3e1c014807fff (diff)
fix(tools): prettier formatting (#6206)
-rw-r--r--CODE_OF_CONDUCT.md6
-rwxr-xr-xtools/format.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index 39e827a84..740967958 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -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.
diff --git a/tools/format.py b/tools/format.py
index f81d99164..2f3faf0dd 100755
--- a/tools/format.py
+++ b/tools/format.py
@@ -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():