-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
54 lines (53 loc) · 1.24 KB
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"imports": {
"@std/uuid": "jsr:@std/uuid@^1.0.4"
},
"lint": {
"rules": {
"tags": [
"recommended"
],
"include": [
"verbatim-module-syntax",
"triple-slash-reference",
"single-var-declarator",
"prefer-ascii",
"no-undef",
"no-throw-literal",
"no-sync-fn-in-async-fn",
"no-sparse-arrays",
"no-self-compare",
"no-non-null-assertion",
"no-non-null-asserted-optional-chain",
"no-inferrable-types",
"no-implicit-declare-namespace-export",
"no-external-import",
"no-eval",
"no-const-assign",
"no-console",
"no-boolean-literal-for-arguments",
"no-await-in-loop",
"guard-for-in",
"eqeqeq",
"default-param-last",
"camelcase",
"ban-untagged-todo"
]
}
},
"fmt": {
"singleQuote": true
},
"compilerOptions": {
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitAny": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false
}
}