We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc55844 commit 3d28f81Copy full SHA for 3d28f81
.github/workflows/linter.yml
@@ -35,13 +35,3 @@ jobs:
35
# Test documentation generation
36
- name: Test documentation
37
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
@@ -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)]
7
// Copyright 2018-2025 the Deno authors. MIT license.
8
9
use deno_core::op2;
0 commit comments