rust/tests/target/skip_macro_invocations/name.rs
Tom Milligan c240f3a6b3
feat: add skip_macro_invocations option (#5347)
* feat: add skip_macro_names option

* [review] update configuration documentation

* [review] fix docstring

* [feat] implement wildcard macro invocation skip

* commit missed files

* [review] test override skip macro names

* [review] skip_macro_names -> skip_macro_invocations

* [review] expand doc configuration

* [review] add lots more tests

* [review] add use alias test examples

* [review] add link to standard macro behaviour
2022-07-12 19:31:19 -05:00

12 lines
189 B
Rust

// rustfmt-skip_macro_invocations: ["items"]
// Should skip this invocation
items!(
const _: u8 = 0;
);
// Should not skip this invocation
renamed_items!(
const _: u8 = 0;
);