-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
51 lines (51 loc) · 1.22 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
{
"tasks": {
"build": "deno run -A ./build/build.ts",
"build:watch": "deno run -A ./build/build.ts --watch",
"build:dev": "deno run -A ./build/build.ts --develope",
"build:dev:watch": "deno run -A ./build/build.ts --develope --watch",
"serve": "",
"lint": "deno lint",
"test": "deno test -A --check --reload --doc --allow-none --junit-path=\"./report.xml\""
},
"test": {
"include": [
"./src/**/*.test.ts"
]
},
"lint": {
"rules": {
"tags": [
"recommended"
],
"include": [
"camelcase",
"default-param-last",
"eqeqeq",
"explicit-function-return-type",
"explicit-module-boundary-types",
"guard-for-in",
"no-const-assign",
"no-eval",
"no-external-import",
"no-non-null-asserted-optional-chain",
"no-non-null-assertion",
"no-self-compare",
"no-sparse-arrays",
"no-sync-fn-in-async-fn",
"no-throw-literal",
"no-undef",
"prefer-ascii",
"single-var-declarator",
"verbatim-module-syntax"
],
"exclude": [
"no-inferrable-types"
]
}
},
"fmt": {
"semiColons": true,
"singleQuote": true
}
}