We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c144099 commit 124df8eCopy full SHA for 124df8e
justfile
@@ -28,7 +28,7 @@ install:
28
29
lint *ARGS:
30
dprint check "$@"
31
-lint-fix *ARGS:
+fmt *ARGS:
32
dprint fmt "$@"
33
clean *ARGS:
34
rimraf temp dist tsconfig.schema.json tsconfig.schemastore-schema.json tsconfig.tsbuildinfo tests/ts-node-packed.tgz tests/node_modules tests/tmp "$@"
@@ -53,7 +53,7 @@ test-cov *ARGS:
53
test *ARGS:
54
just build && just lint && just test-cov "$@"
55
test-local *ARGS:
56
- just lint-fix && just build-tsc && just build-pack && just test-spec "$@"
+ just fmt && just build-tsc && just build-pack && just test-spec "$@"
57
pre-debug *ARGS:
58
just build-tsc && just build-pack "$@"
59
coverage-report *ARGS:
0 commit comments