Skip to content

Commit 9e9c7f8

Browse files
committedNov 14, 2024
Add fix demo
1 parent ea1aa05 commit 9e9c7f8

File tree

7 files changed

+30
-0
lines changed

7 files changed

+30
-0
lines changed
 
291 KB
Binary file not shown.
562 KB
Binary file not shown.

‎packages/docs/src/content/docs/features/auto-fix.mdx

+8
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ knip --fix-type exports,types
5252
knip --fix-type exports --fix-type types # same as above
5353
```
5454

55+
## Demo
56+
57+
<video controls width="500">
58+
<source src="/screenshots/fix.mp4" type="video/mp4" />
59+
60+
<source src="/screenshots/fix.webm" type="video/webm" />
61+
</video>
62+
5563
## Post-fix
5664

5765
After Knip has fixed issues, there are four things to consider:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { ONE, NUMBERS } from './numbers.js';
2+
3+
ONE;
4+
5+
NUMBERS.FOUR;
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
import './import-numbers.js';
2+
13
export * from './exports.js';
24
export { usedFunction } from './used-fn.js';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const ONE = 1;
2+
const TWO = 2;
3+
4+
export { ONE, TWO };
5+
6+
export const THREE = ONE + TWO;
7+
8+
export enum NUMBERS {
9+
FOUR = 4,
10+
FIVE = 5
11+
}

‎templates/demo/script/demo.lua

+4
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ end
106106

107107
local function init(done)
108108
hs.execute("code ", true)
109+
hs.eventtap.keyStroke({ "cmd", "shift" }, "0")
110+
hs.eventtap.keyStroke({ "cmd" }, "=")
111+
hs.eventtap.keyStroke({ "cmd" }, "=")
112+
hs.eventtap.keyStroke({ "cmd" }, "=")
109113
enterStage(done, "✂️ demo\n\nknip --watch\nknip --fix", function(cb)
110114
openVSCodeWithFile(demo .. "/packages/shared/src/exports.ts", cb);
111115
end)

0 commit comments

Comments
 (0)
Please sign in to comment.