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
33 lines
667 B
Rust
33 lines
667 B
Rust
// rustfmt-skip_macro_invocations: ["aaa","ccc"]
|
|
|
|
// These tests demonstrate a realistic use case with use aliases.
|
|
// The use statements should not impact functionality in any way.
|
|
|
|
use crate::{aaa, bbb, ddd};
|
|
|
|
// No use alias, invocation in list
|
|
// Should skip this invocation
|
|
aaa!(
|
|
const _: u8 = 0;
|
|
);
|
|
|
|
// Use alias, invocation in list
|
|
// Should skip this invocation
|
|
use crate::bbb as ccc;
|
|
ccc!(
|
|
const _: u8 = 0;
|
|
);
|
|
|
|
// Use alias, invocation not in list
|
|
// Should not skip this invocation
|
|
use crate::ddd as eee;
|
|
eee!(
|
|
const _: u8 = 0;
|
|
);
|
|
|
|
// No use alias, invocation not in list
|
|
// Should not skip this invocation
|
|
fff!(
|
|
const _: u8 = 0;
|
|
);
|