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()
146 && cfg!(feature = "experimental-enum-variants-from-header") in parse()
162 // https://doc.rust-lang.org/reference/attributes/diagnostics.html in parse()
170 if tool == "rustfmt" { in parse()
171 // Skip, rustfmt only needs to find it in the pre-expansion source file. in parse()
173 } else if tool == "clippy" { in parse()
195 fn parse_doc_attribute(input: ParseStream) -> Result<DocAttribute> { in parse_doc_attribute()
211 fn parse_derive_attribute(cx: &mut Errors, input: ParseStream) -> Result<Vec<Derive>> { in parse_derive_attribute()
227 fn parse_repr_attribute(input: ParseStream) -> Result<Atom> { in parse_repr_attribute()
244 fn parse_namespace_attribute(input: ParseStream) -> Result<Namespace> { in parse_namespace_attribute()
250 fn parse_cxx_name_attribute(input: ParseStream) -> Result<ForeignName> { in parse_cxx_name_attribute()
261 fn parse_rust_name_attribute(input: ParseStream) -> Result<Ident> { in parse_rust_name_attribute()
275 pub fn none() -> Self { in none()