chore: forbid non ascii idents

This commit is contained in:
Dmitriy Pleshevskiy 2021-06-22 10:20:22 +03:00
parent ab21e98336
commit 5bddfcfa6d
2 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#![recursion_limit = "256"] #![recursion_limit = "256"]
#![deny(clippy::all)] #![deny(clippy::all)]
#![forbid(unsafe_code)] #![forbid(unsafe_code)]
#![forbid(non_ascii_idents)]
mod ast; mod ast;
mod expand; mod expand;

View File

@ -134,6 +134,7 @@
// Rustc lints. // Rustc lints.
#![forbid(unsafe_code)] #![forbid(unsafe_code)]
#![forbid(non_ascii_idents)]
#![deny( #![deny(
missing_debug_implementations, missing_debug_implementations,
missing_docs, missing_docs,