summaryrefslogtreecommitdiff
path: root/cli/flags.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-05-11 10:23:19 -0400
committerGitHub <noreply@github.com>2019-05-11 10:23:19 -0400
commitaba952397ae668714add770c5b6fa6edf1cf3eb5 (patch)
treea1d2f0bd9758cdd5b196e3ed8efc12c657795aab /cli/flags.rs
parent2c6b93e0a0c7927dc4dd66c1f681a78a6d79b8f1 (diff)
Add progress bar (#2309)
Diffstat (limited to 'cli/flags.rs')
-rw-r--r--cli/flags.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/flags.rs b/cli/flags.rs
index 442d10665..e1ae09ebb 100644
--- a/cli/flags.rs
+++ b/cli/flags.rs
@@ -7,7 +7,6 @@ macro_rules! svec {
($($x:expr),*) => (vec![$($x.to_string()),*]);
}
-#[cfg_attr(feature = "cargo-clippy", allow(stutter))]
#[derive(Clone, Debug, PartialEq, Default)]
pub struct DenoFlags {
pub log_debug: bool,
@@ -307,7 +306,6 @@ fn resolve_paths(paths: Vec<String>) -> Vec<String> {
/// Parse ArgMatches into internal DenoFlags structure.
/// This method should not make any side effects.
-#[cfg_attr(feature = "cargo-clippy", allow(stutter))]
pub fn parse_flags(matches: ArgMatches) -> DenoFlags {
let mut flags = DenoFlags::default();