chore: 🎨 deno fmt
This commit is contained in:
parent
67379d9468
commit
945f1ff939
33
deno.json
33
deno.json
|
@ -11,15 +11,29 @@
|
||||||
"serve": "deno task preview",
|
"serve": "deno task preview",
|
||||||
"dev:add_package": "deno run --allow-net=git.cohabit.fr --allow-read=. --allow-write=./deno.json,./packages --allow-run=git,deno ./scripts/add_package.ts"
|
"dev:add_package": "deno run --allow-net=git.cohabit.fr --allow-read=. --allow-write=./deno.json,./packages --allow-run=git,deno ./scripts/add_package.ts"
|
||||||
},
|
},
|
||||||
"fmt": { "singleQuote": true, "semiColons": false, "useTabs": true },
|
"fmt": {
|
||||||
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
|
"singleQuote": true,
|
||||||
"exclude": ["**/_fresh/*", "packages/"],
|
"semiColons": false,
|
||||||
|
"useTabs": true
|
||||||
|
},
|
||||||
|
"lint": {
|
||||||
|
"rules": {
|
||||||
|
"tags": [
|
||||||
|
"fresh",
|
||||||
|
"recommended"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"exclude": [
|
||||||
|
"**/_fresh/*",
|
||||||
|
"packages/"
|
||||||
|
],
|
||||||
"imports": {
|
"imports": {
|
||||||
|
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
|
||||||
|
"$std/": "https://deno.land/std@0.208.0/",
|
||||||
":components/": "./components/",
|
":components/": "./components/",
|
||||||
":islands/": "./islands/",
|
":islands/": "./islands/",
|
||||||
":src/": "./src/",
|
":src/": "./src/",
|
||||||
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
|
|
||||||
"$std/": "https://deno.land/std@0.208.0/",
|
|
||||||
"@cohabit/cohamail/": "./packages/@cohabit__cohamail@0.2.1/",
|
"@cohabit/cohamail/": "./packages/@cohabit__cohamail@0.2.1/",
|
||||||
"@cohabit/ressources_manager/": "./packages/@cohabit__ressources_manager@0.1.3/",
|
"@cohabit/ressources_manager/": "./packages/@cohabit__ressources_manager@0.1.3/",
|
||||||
"@jotsr/delayed": "jsr:@jotsr/delayed@^2.1.1",
|
"@jotsr/delayed": "jsr:@jotsr/delayed@^2.1.1",
|
||||||
|
@ -38,10 +52,15 @@
|
||||||
"univoq": "https://deno.land/x/univoq@0.2.0/mod.ts",
|
"univoq": "https://deno.land/x/univoq@0.2.0/mod.ts",
|
||||||
"web-push": "npm:web-push@^3.6.7"
|
"web-push": "npm:web-push@^3.6.7"
|
||||||
},
|
},
|
||||||
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
|
"compilerOptions": {
|
||||||
|
"jsx": "react-jsx",
|
||||||
|
"jsxImportSource": "preact"
|
||||||
|
},
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"packages/@cohabit__cohamail@0.2.1",
|
"packages/@cohabit__cohamail@0.2.1",
|
||||||
"packages/@cohabit__ressources_manager@0.1.3"
|
"packages/@cohabit__ressources_manager@0.1.3"
|
||||||
],
|
],
|
||||||
"unstable": ["kv"]
|
"unstable": [
|
||||||
|
"kv"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue