Skip to content

Commit aad8676

Browse files
Remove rustfmt::skip top-of-file annotations
1 parent 7119001 commit aad8676

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+1
-120
lines changed

build.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg_attr(rustfmt, rustfmt::skip)]
2-
31
fn main() {
42
if cfg!(feature = "proc_macros") {
53
println!("cargo:warning=[safer-ffi] \

ffi_tests/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![cfg_attr(rustfmt, rustfmt::skip)]
21
#![allow(unused)]
32

43
use ::safer_ffi::prelude::*;

ffi_tests/tests/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![cfg_attr(rustfmt, rustfmt::skip)]
21
#[test]
32
fn test_c_code ()
43
{

js_tests/build.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg_attr(rustfmt, rustfmt::skip)]
2-
31
fn main ()
42
{
53
::safer_ffi_build::setup();

js_tests/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![cfg_attr(rustfmt, rustfmt::skip)]
21
#![allow(unused_parens)]
32

43
use ::safer_ffi::prelude::*;

napi-dispatcher/dispatcher.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![warn(warnings)] // Prevent `-Dwarnings` from causing breakage.
22
#![allow(clippy::all)]
3-
#![cfg_attr(rustfmt, rustfmt::skip)]
43

54
macro_rules! emit {( $($_:tt)* ) => ( $($_)* )}
65

napi-dispatcher/nodejs-derive/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![warn(warnings)] // Prevent `-Dwarnings` from causing breakage.
22
#![allow(clippy::all)]
3-
#![cfg_attr(rustfmt, rustfmt::skip)]
43

54
#[doc(inline)]
65
pub use ::{

napi-dispatcher/nodejs-derive/src/proc_macros/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![warn(warnings)] // Prevent `-Dwarnings` from causing breakage.
22
#![allow(clippy::all)]
3-
#![cfg_attr(rustfmt, rustfmt::skip)]
43
#![allow(nonstandard_style, unused_imports)]
54

65
use ::core::{mem, ops::Not as _};

napi-dispatcher/wasm/src/env.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![cfg_attr(rustfmt, rustfmt::skip)]
2-
31
use super::*;
42

53
impl Env {

napi-dispatcher/wasm/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
33
#![warn(warnings)] // Prevent `-Dwarnings` from causing breakage.
44
#![allow(clippy::all)]
5-
#![cfg_attr(rustfmt, rustfmt::skip)]
65

76
use ::{
87
ref_cast::RefCast,

0 commit comments

Comments
 (0)