-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
52 lines (52 loc) · 1.18 KB
/
Copy pathdeno.jsonc
File metadata and controls
52 lines (52 loc) · 1.18 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
{
"name": "@suddenly-giovanni/std",
"version": "0.0.6",
"lock": true,
"exports": {
"./predicate": "./src/predicate/mod.ts",
"./option": "./src/option/mod.ts"
},
"fmt": {
"useTabs": true,
"lineWidth": 100,
"indentWidth": 4,
"semiColons": false,
"singleQuote": true,
"proseWrap": "preserve"
},
"lint": {
"include": ["src/"],
"rules": {
"tags": ["recommended"]
},
"report": "pretty",
"files": {},
"exclude": []
},
"tasks": {
"format": "deno run -A npm:@biomejs/biome format --write ./src",
"lint": "deno run -A npm:@biomejs/biome lint ./src",
"test": "deno test --allow-all --unstable ./src",
"test:ci": "deno test --allow-all --parallel --coverage --unstable ./src",
"doc:lint": "deno doc --lint ./src/**/*.ts",
"doc:test": "deno test --doc ./src/**/*.ts",
"cov:gen": "deno coverage coverage --lcov --output=cov.lcov",
"cov:view": "deno coverage --html coverage",
"ok": "deno task lint && deno fmt --check && deno task test"
},
"exclude": [
".editorconfig",
".git",
".github",
".idea",
".vscode",
"biome.jsonc",
"cov",
"coverage",
"crypto/_wasm/target",
"docs",
"front_matter/testdata",
"hooks/",
"jsonc/testdata"
]
}