Skip to content

Commit 7d2fd91

Browse files
committed
ensure clean.ts adheres to linting rules
1 parent 3c9b1ea commit 7d2fd91

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

bin/clean.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
#!/usr/bin/env -S node --import tsx
22

33
import { rmSync } from "fs";
4-
/*
4+
5+
/*
56
Some operating systems do not have the ability to perform
6-
rm -rf ... (example: Windows)
7+
rm -rf ... (example: Windows)
78
*/
89

910
rmSync('lib', {'force':true, 'recursive':true})
1011
rmSync('test/tmp', {'force':true, 'recursive':true})
11-
12-

0 commit comments

Comments
 (0)