c240f3a6b3
* 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
12 lines
189 B
Rust
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;
|
|
);
|