chore: forbid non ascii idents
This commit is contained in:
parent
ab21e98336
commit
5bddfcfa6d
2 changed files with 2 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
#![recursion_limit = "256"]
|
||||
#![deny(clippy::all)]
|
||||
#![forbid(unsafe_code)]
|
||||
#![forbid(non_ascii_idents)]
|
||||
|
||||
mod ast;
|
||||
mod expand;
|
||||
|
|
|
@ -134,6 +134,7 @@
|
|||
|
||||
// Rustc lints.
|
||||
#![forbid(unsafe_code)]
|
||||
#![forbid(non_ascii_idents)]
|
||||
#![deny(
|
||||
missing_debug_implementations,
|
||||
missing_docs,
|
||||
|
|
Reference in a new issue