Skip to content

Commit f11a24e

Browse files
committed
☕ Do NOT fmt/lint/test .deno
1 parent 0483eb2 commit f11a24e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ tools: FORCE ## Install development tools
1212
@deno install -A -f -n udd --root ${TOOLS} https://deno.land/x/udd@0.4.0/main.ts
1313

1414
fmt: FORCE ## Format code
15-
@deno fmt
15+
@deno fmt --ignore=.deno
1616

1717
fmt-check: FORCE ## Format check
18-
@deno fmt --check
18+
@deno fmt --check --ignore=.deno
1919

2020
lint: FORCE ## Lint code
21-
@deno lint
21+
@deno lint --ignore=.deno
2222

2323
type-check: FORCE ## Type check
24-
@deno test --unstable --no-run $$(find . -name '*.ts')
24+
@deno test --unstable --no-run $$(find . -name '*.ts' -not -name '.deno')
2525

2626
test: FORCE ## Test
2727
@deno test --unstable -A
@@ -32,7 +32,7 @@ gen: FORCE ## Generate codes
3232
@make fmt
3333

3434
update: FORCE ## Update dependencies
35-
@${TOOLS}/bin/udd $$(find ./denops_std -name '*.ts')
35+
@${TOOLS}/bin/udd $$(find ./denops_std -name '*.ts' -not -name '.deno')
3636
@make fmt
3737

3838
FORCE:

0 commit comments

Comments
 (0)