Skip to content

Commit 0eeb088

Browse files
committed
fails w/o deno.jsonc config file
1 parent b290f58 commit 0eeb088

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
.env
3+
.slack/*

deno.jsonc

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
3+
"fmt": {
4+
"include": [
5+
"README.md",
6+
"datastores",
7+
"external_auth",
8+
"functions",
9+
"manifest.ts",
10+
"triggers",
11+
"types",
12+
"views",
13+
"workflows"
14+
]
15+
},
16+
"importMap": "import_map.json",
17+
"lint": {
18+
"include": [
19+
"datastores",
20+
"external_auth",
21+
"functions",
22+
"manifest.ts",
23+
"triggers",
24+
"types",
25+
"views",
26+
"workflows"
27+
]
28+
},
29+
"lock": false,
30+
"tasks": {
31+
"test": "deno fmt --check && deno lint && deno test --allow-read --allow-none"
32+
}
33+
}

0 commit comments

Comments
 (0)