Skip to content

Commit 3d28f81

Browse files
committed
Fix nix warnings
1 parent cc55844 commit 3d28f81

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/linter.yml

-10
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,3 @@ jobs:
3535
# Test documentation generation
3636
- name: Test documentation
3737
run: cargo doc --features snapshot_builder
38-
39-
#
40-
# Run examples
41-
#
42-
43-
- name: custom_types
44-
run: cargo run --example custom_types
45-
46-
- name: start_here
47-
run: cargo run --example start_here

src/ext/io/tty_unix.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#![allow(clippy::match_same_arms)]
2+
#![allow(clippy::cast_lossless)]
3+
#![allow(clippy::borrow_as_ptr)]
4+
#![allow(clippy::single_match_else)]
5+
#![allow(clippy::items_after_statements)]
6+
#![allow(dead_code)]
17
// Copyright 2018-2025 the Deno authors. MIT license.
28

39
use deno_core::op2;

0 commit comments

Comments
 (0)