Skip to content

Commit 27998dd

Browse files
committed
try again
1 parent 727189b commit 27998dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/check.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ async function runCommands(
167167
}
168168

169169
const CLIPPY_FEATURES =
170-
`deno_core/include_js_files_for_snapshotting deno_core/unsafe_runtime_options deno_core/unsafe_use_unprotected_platform`;
170+
`deno_core/default deno_core/include_js_files_for_snapshotting deno_core/unsafe_runtime_options deno_core/unsafe_use_unprotected_platform`;
171171

172172
export async function main(command: string, flag: string) {
173173
if (command == "format") {
@@ -187,7 +187,7 @@ export async function main(command: string, flag: string) {
187187
await runCommands("Linting (--fix)", {
188188
"copyright": $`tools/copyright_checker.js --fix`,
189189
"cargo clippy":
190-
$`cargo clippy --fix --allow-dirty --allow-staged --locked --release --features "${CLIPPY_FEATURES}" --all-targets -- -D clippy::all`,
190+
$`cargo clippy --fix --allow-dirty --allow-staged --locked --release --features ${CLIPPY_FEATURES} --all-targets -- -D clippy::all`,
191191
});
192192
} else {
193193
await runCommands("Linting", {
@@ -199,7 +199,7 @@ export async function main(command: string, flag: string) {
199199
"tsc":
200200
$`deno run --allow-read --allow-env npm:[email protected]/tsc --noEmit -p testing/tsconfig.json`,
201201
"cargo clippy":
202-
$`cargo clippy --locked --release --features "${CLIPPY_FEATURES}" --all-targets -- -D clippy::all`,
202+
$`cargo clippy --locked --release --features ${CLIPPY_FEATURES} --all-targets -- -D clippy::all`,
203203
});
204204
}
205205
}

0 commit comments

Comments
 (0)