generated from DenoPlayground/Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
70 lines (70 loc) · 1.44 KB
/
deno.json
File metadata and controls
70 lines (70 loc) · 1.44 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@typescriptplayground/socket",
"version": "0.2.0",
"license": "./LICENSE",
"exports": {
".": "./src/index.ts"
},
"tasks": {
"lint": {
"description": "Run linter.",
"command": "deno lint"
},
"format": {
"description": "Run formatter.",
"command": "deno lint --fix"
},
"test": {
"description": "Run the test suite.",
"command": "deno test -A --check --permit-no-files --reload --doc --junit-path=\"./reports/report.xml\""
}
},
"compilerOptions": {
"lib": [
"deno.ns",
"deno.window",
"deno.worker"
]
},
"test": {
"include": [
"./src/**/*.test.ts"
]
},
"lint": {
"plugins": [
"jsr:@loat-dev/lint-plugins@0.3.12/imports",
"jsr:@loat-dev/lint-plugins@0.3.12/arrays"
],
"rules": {
"tags": [
"recommended"
],
"include": [
"camelcase",
"default-param-last",
"eqeqeq",
"explicit-function-return-type",
"explicit-module-boundary-types",
"guard-for-in",
"no-eval",
"no-sparse-arrays",
"prefer-ascii"
],
"exclude": [
"no-inferrable-types"
]
}
},
"fmt": {
"semiColons": true,
"singleQuote": true,
"trailingCommas": "never",
"lineWidth": 120,
"typeLiteral.separatorKind": "comma",
"useBraces": "always"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.15"
}
}