Skip to content

Commit

Permalink
Update deno.json to conform with new deno version
Browse files Browse the repository at this point in the history
  • Loading branch information
kiron1 committed Nov 20, 2023
1 parent 7ed908b commit 570feb7
Showing 1 changed file with 38 additions and 34 deletions.
72 changes: 38 additions & 34 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,51 @@
{
"compilerOptions": {
"allowJs": true,
"lib": ["deno.window"],
"lib": [
"deno.window"
],
"strict": true
},
"lint": {
"files": {
"include": ["."],
"exclude": [
"book/",
"coverage/",
"paclib/src/pac_utils.js",
"target/",
"www/bootstrap.min.js",
"www/jquery-slim.min.js",
"www/popper.min.js"
]
},
"include": [
"."
],
"exclude": [
"book/",
"coverage/",
"paclib/src/pac_utils.js",
"target/",
"www/bootstrap.min.js",
"www/jquery-slim.min.js",
"www/popper.min.js"
],
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"tags": [
"recommended"
],
"include": [
"ban-untagged-todo"
],
"exclude": []
}
},
"fmt": {
"files": {
"include": ["."],
"exclude": [
"book/",
"coverage/",
"paclib/src/pac_utils.js",
"target/",
"www/bootstrap.min.js",
"www/jquery-slim.min.js",
"www/popper.min.js"
]
},
"options": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"singleQuote": false,
"proseWrap": "preserve"
}
"include": [
"."
],
"exclude": [
"book/",
"coverage/",
"paclib/src/pac_utils.js",
"target/",
"www/bootstrap.min.js",
"www/jquery-slim.min.js",
"www/popper.min.js"
],
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"singleQuote": false,
"proseWrap": "preserve"
}
}

0 comments on commit 570feb7

Please sign in to comment.