Skip to content

Commit

Permalink
style: use tabs and single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacThoman committed Jan 3, 2025
1 parent 18640d6 commit d83aa93
Showing 1 changed file with 27 additions and 25 deletions.
52 changes: 27 additions & 25 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
{
"tasks": {
"dev": "deno run -A --node-modules-dir npm:vite",
"build": "deno run -A --node-modules-dir npm:vite build",
"preview": "deno run -A --node-modules-dir npm:vite preview",
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/",
"start": "deno task build && deno run --allow-read --allow-env --allow-net --allow-write main.ts"
},
"compilerOptions": {
"lib": ["ES2020", "DOM", "DOM.Iterable", "deno.ns"]
},
"imports": {
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
"@oak/oak": "jsr:@oak/oak@^17.1.3",
"@std/http": "jsr:@std/http@^1.0.10",
"vite": "npm:vite@^5.4.8"
},
"lint": {
"include": ["src/"],
"exclude": ["dist/", "node_modules/", "public/"]
},
"fmt": {
"options": {
"lineWidth": 120
}
}
"tasks": {
"dev": "deno run -A --node-modules-dir npm:vite",
"build": "deno run -A --node-modules-dir npm:vite build",
"preview": "deno run -A --node-modules-dir npm:vite preview",
"serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/",
"start": "deno task build && deno run --allow-read --allow-env --allow-net --allow-write main.ts"
},
"compilerOptions": {
"lib": ["ES2020", "DOM", "DOM.Iterable", "deno.ns"]
},
"imports": {
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
"@oak/oak": "jsr:@oak/oak@^17.1.3",
"@std/http": "jsr:@std/http@^1.0.10",
"vite": "npm:vite@^5.4.8"
},
"lint": {
"include": ["src/"],
"exclude": ["dist/", "node_modules/", "public/"]
},
"fmt": {
"options": {
"lineWidth": 120,
"useTabs": true,
"singleQuote": true
}
}
}

0 comments on commit d83aa93

Please sign in to comment.