mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
Remove now stable tool_attributes feature
This commit is contained in:
parent
712d2d4fa1
commit
37099ae034
9 changed files with 8 additions and 10 deletions
|
@ -8,10 +8,8 @@
|
|||
#![feature(macro_vis_matcher)]
|
||||
#![allow(unknown_lints, shadow_reuse, missing_docs_in_private_items)]
|
||||
#![recursion_limit = "256"]
|
||||
#![allow(stable_features)]
|
||||
#![feature(iterator_find_map)]
|
||||
#![feature(macro_at_most_once_rep)]
|
||||
#![feature(tool_attributes)]
|
||||
#![warn(rust_2018_idioms)]
|
||||
|
||||
use toml;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(tool_attributes)]
|
||||
|
||||
|
||||
// Tests for the various helper functions used by the needless_continue
|
||||
// lint that don't belong in utils.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(tool_attributes)]
|
||||
|
||||
|
||||
/// test the multiline-trim function
|
||||
extern crate clippy_lints;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(tool_attributes)]
|
||||
|
||||
|
||||
fn main() {
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(tool_attributes)]
|
||||
|
||||
|
||||
fn main() {
|
||||
#[clippy::author]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(tool_attributes, stmt_expr_attributes)]
|
||||
#![feature(stmt_expr_attributes)]
|
||||
|
||||
fn main() {
|
||||
#[clippy::author]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(tool_attributes)]
|
||||
|
||||
|
||||
#![allow(clippy)]
|
||||
#![warn(cyclomatic_complexity)]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(tool_attributes)]
|
||||
|
||||
|
||||
#![warn(cyclomatic_complexity)]
|
||||
#![warn(unused)]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#![feature(stmt_expr_attributes, tool_attributes)]
|
||||
#![feature(stmt_expr_attributes)]
|
||||
|
||||
#![allow(unused_parens)]
|
||||
|
||||
|
|
Loading…
Reference in a new issue