Updating code to ignore rustfmt issue.

This commit is contained in:
Unknown 2019-02-01 13:19:55 -05:00 committed by unknown
parent a35083f2e6
commit 6e35b33bc3
2 changed files with 4 additions and 3 deletions

View file

@ -1,6 +1,5 @@
#![warn(clippy::too_many_lines)]
// This function should be considered one line.
fn many_comments_but_one_line_of_code() {
/* println!("This is good."); */
@ -22,6 +21,7 @@ fn too_many_lines() {
}
// This should be considered one line.
#[rustfmt::skip]
fn comment_starts_after_code() {
let _ = 5; /* closing comment. */ /*
this line shouldn't be counted theoretically.
@ -34,6 +34,7 @@ fn comment_after_code() {
}
// This should fail since it is technically two lines.
#[rustfmt::skip]
fn comment_before_code() {
let _ = "test";
/* This comment extends to the front of

View file

@ -1,5 +1,5 @@
error: This function has a large number of lines.
--> $DIR/test.rs:19:1
--> $DIR/test.rs:18:1
|
LL | / fn too_many_lines() {
LL | | println!("This is bad.");
@ -10,7 +10,7 @@ LL | | }
= note: `-D clippy::too-many-lines` implied by `-D warnings`
error: This function has a large number of lines.
--> $DIR/test.rs:37:1
--> $DIR/test.rs:38:1
|
LL | / fn comment_before_code() {
LL | | let _ = "test";