File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,16 +12,16 @@ tools: FORCE ## Install development tools
12
12
@deno install -A -f -n udd --root ${TOOLS} https://deno.land/x/udd@0.4.0/main.ts
13
13
14
14
fmt : FORCE # # Format code
15
- @deno fmt
15
+ @deno fmt --ignore=.deno
16
16
17
17
fmt-check : FORCE # # Format check
18
- @deno fmt --check
18
+ @deno fmt --check --ignore=.deno
19
19
20
20
lint : FORCE # # Lint code
21
- @deno lint
21
+ @deno lint --ignore=.deno
22
22
23
23
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' )
25
25
26
26
test : FORCE # # Test
27
27
@deno test --unstable -A
@@ -32,7 +32,7 @@ gen: FORCE ## Generate codes
32
32
@make fmt
33
33
34
34
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' )
36
36
@make fmt
37
37
38
38
FORCE :
You can’t perform that action at this time.
0 commit comments