Skip to content

Commit

Permalink
Revert "feat: eslintの設定"
Browse files Browse the repository at this point in the history
This reverts commit a263d08.
  • Loading branch information
yossydev committed Feb 23, 2024
1 parent 09d980f commit a005255
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 69 deletions.
7 changes: 0 additions & 7 deletions .eslintignore

This file was deleted.

23 changes: 0 additions & 23 deletions .eslintrc.cjs

This file was deleted.

4 changes: 2 additions & 2 deletions app/client.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { createClient } from "honox/client";
import { createClient } from 'honox/client'

createClient();
createClient()
55 changes: 26 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,28 @@
{
"name": "blog",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --mode client && vite build",
"preview": "wrangler pages dev ./dist",
"deploy": "$npm_execpath run build && wrangler pages deploy ./dist",
"format": "biome format . --write",
"lint": "biome lint .",
"check": "biome check --apply ."
},
"private": true,
"dependencies": {
"hono": "^4.0.5",
"honox": "^0.1.4"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@cloudflare/workers-types": "^4.20240208.0",
"@hono/vite-cloudflare-pages": "^0.2.4",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"vite": "^5.0.12",
"wrangler": "^3.27.0"
}
"name": "blog",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --mode client && vite build",
"preview": "wrangler pages dev ./dist",
"deploy": "$npm_execpath run build && wrangler pages deploy ./dist",
"format": "biome format . --write",
"lint": "biome lint .",
"check": "biome check --apply ."
},
"private": true,
"dependencies": {
"hono": "^4.0.5",
"honox": "^0.1.4"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@cloudflare/workers-types": "^4.20240208.0",
"@hono/vite-cloudflare-pages": "^0.2.4",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"vite": "^5.0.12",
"wrangler": "^3.27.0"
}
}
5 changes: 0 additions & 5 deletions tsconfig.eslint.json

This file was deleted.

11 changes: 8 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"lib": ["ESNext", "DOM"],
"types": ["@cloudflare/workers-types"],
"lib": [
"ESNext",
"DOM"
],
"types": [
"@cloudflare/workers-types"
],
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx"
}
},
}

0 comments on commit a005255

Please sign in to comment.