Merge pull request #1994 from ishitatsuyuki/lint-cleanup

Lint cleanup
This commit is contained in:
Oliver Schneider 2017-08-27 12:44:14 +02:00 committed by GitHub
commit ab00e960c4
1 changed files with 1 additions and 6 deletions

View File

@ -10,20 +10,15 @@
#![feature(stmt_expr_attributes)]
#![feature(conservative_impl_trait)]
#![allow(indexing_slicing, shadow_reuse, unknown_lints, missing_docs_in_private_items)]
#![allow(unknown_lints, indexing_slicing, shadow_reuse, missing_docs_in_private_items)]
extern crate syntax;
extern crate syntax_pos;
#[macro_use]
extern crate rustc;
extern crate rustc_data_structures;
extern crate toml;
// Only for the compile time checking of paths
extern crate core;
extern crate alloc;
// for unicode nfc normalization
extern crate unicode_normalization;