Lines Matching +full:rustfmt +full:- +full:clippy
41 // Suppress clippy needless_update lint ("struct update has no effect, all
47 pub fn parse(cx: &mut Errors, attrs: Vec<Attribute>, mut parser: Parser) -> OtherAttrs { in parse()
147 && cfg!(feature = "experimental-enum-variants-from-header") in parse()
163 // https://doc.rust-lang.org/reference/attributes/diagnostics.html in parse()
171 if tool == "rustfmt" { in parse()
172 // Skip, rustfmt only needs to find it in the pre-expansion source file. in parse()
174 } else if tool == "clippy" { in parse()
196 fn parse_doc_attribute(meta: &Meta) -> Result<DocAttribute> { in parse_doc_attribute()
214 fn parse_derive_attribute(cx: &mut Errors, input: ParseStream) -> Result<Vec<Derive>> { in parse_derive_attribute()
230 fn parse_repr_attribute(input: ParseStream) -> Result<Atom> { in parse_repr_attribute()
247 fn parse_cxx_name_attribute(meta: &Meta) -> Result<ForeignName> { in parse_cxx_name_attribute()
266 fn parse_rust_name_attribute(meta: &Meta) -> Result<Ident> { in parse_rust_name_attribute()
289 pub fn none() -> Self { in none()