-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
35 lines (35 loc) · 1.1 KB
/
Copy pathdeno.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "@hyperpolymath/empty-linter",
"version": "0.1.0",
"exports": "./EmptyLinter.deno.js",
"tasks": {
"build": "affinescript compile --deno-esm EmptyLinter.affine -o EmptyLinter.deno.js && affinescript compile --deno-esm src/cli/Main.affine -o src/cli/Main.deno.js",
"build-all": "bash scripts/build-all.sh",
"clean": "find . -name '*.deno.js' ! -path './stdlib/*' -delete",
"dev": "while true; do affinescript compile --deno-esm EmptyLinter.affine -o EmptyLinter.deno.js 2>&1; sleep 2; done",
"test": "deno test --allow-read --allow-write tests/",
"lint": "deno run --allow-read src/cli/Main.deno.js",
"check": "deno check EmptyLinter.deno.js"
},
"imports": {
"@std/assert": "jsr:@std/assert@1"
},
"compilerOptions": {
"allowJs": true,
"strict": true
},
"lint": {
"rules": {
"tags": ["recommended"]
},
"exclude": ["lib/", "node_modules/", "deps/"]
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"singleQuote": false,
"proseWrap": "preserve",
"exclude": ["lib/", "node_modules/", "deps/"]
}
}