summaryrefslogtreecommitdiff
path: root/cli/flags.rs
diff options
context:
space:
mode:
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();