-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
41 lines (41 loc) · 945 Bytes
/
deno.json
File metadata and controls
41 lines (41 loc) · 945 Bytes
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
{
"compilerOptions": {
"allowJs": true,
"lib": ["deno.window"],
"strict": true
},
"lint": {
"files": {
"include": ["app/assets/javascripts/**/*.js"],
"exclude": ["vendor/"]
},
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"exclude": ["no-unused-vars"]
}
},
"fmt": {
"files": {
"include": ["app/assets/javascripts/**/*.js"],
"exclude": ["vendor/"]
},
"options": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve"
}
},
"tasks": {
"check": "deno check app/assets/javascripts/**/*.js",
"lint": "deno lint app/assets/javascripts/",
"fmt": "deno fmt app/assets/javascripts/",
"fmt:check": "deno fmt --check app/assets/javascripts/"
},
"imports": {
"@std/": "https://deno.land/std@0.208.0/"
}
}