diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-09-25 08:31:17 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-25 08:31:17 +1000 |
commit | c489589e2b220317609689fbb1d0aec06191c7e9 (patch) | |
tree | 43d083abad7e900ebd2c7fd84160305aa6ebc5ed /cli/tsc_config.rs | |
parent | 7726cfb93243932a07107f67b87032adb40abdc0 (diff) |
refactor: new module graph used for no check (#7621)
Diffstat (limited to 'cli/tsc_config.rs')
-rw-r--r-- | cli/tsc_config.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/tsc_config.rs b/cli/tsc_config.rs index 63538d49f..f748c7a5c 100644 --- a/cli/tsc_config.rs +++ b/cli/tsc_config.rs @@ -16,9 +16,8 @@ impl fmt::Display for IgnoredCompilerOptions { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { let mut codes = self.0.clone(); codes.sort(); - write!(f, "{}", codes.join(", "))?; - Ok(()) + write!(f, "{}", codes.join(", ")) } } |