### What it does *What does this lint do?* ### What it does Check `quote!` is always used with curly braces, this could maybe apply to other macros or other bracing combos? ### Categories - Nursery This is mostly a consistency lint although using `()` or `[]` doesn't give you a semicolon in item position, which can be unexpected. ### Drawbacks None :shrug: ### Example ```rust quote! ( some tokens ) ``` Could be written as: ```rust quote! { some tokens } ``` If everyone is ok with this in the nursery I can open a PR.