blowater/deno.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2023-06-30 14:05:57 +00:00
{
2024-05-24 09:54:27 +00:00
"tasks": {
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/deno_hooks@0.1.2/mod.ts"
},
2023-06-30 14:05:57 +00:00
"compilerOptions": {
"checkJs": false,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment"
2023-06-30 14:05:57 +00:00
},
"lint": {
"rules": {
"tags": [
"recommended"
],
"exclude": [
"prefer-const",
"no-inferrable-types",
2024-06-17 07:42:51 +00:00
"require-await",
"ban-ts-comment",
"no-async-promise-executor",
"no-case-declarations",
"no-window",
"no-unused-vars"
2023-06-30 14:05:57 +00:00
]
2024-06-17 07:42:51 +00:00
},
"exclude": ["app/UI/assets", "build-pwa", "libs", "*.test.*"]
2023-06-30 14:05:57 +00:00
},
"fmt": {
2024-05-27 18:55:43 +00:00
"exclude": [
"UI/vendor/",
"vendor",
"*cov_profile*",
"*tauri*",
2024-06-01 06:57:02 +00:00
"app/UI/assets/",
"*/tailwind.js"
2024-05-27 18:55:43 +00:00
],
"indentWidth": 4,
"lineWidth": 110
2024-06-17 07:42:51 +00:00
},
"test": {
"exclude": ["libs/*"]
2023-06-30 14:05:57 +00:00
}
}