Skip to content

updated some deps #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

56 changes: 0 additions & 56 deletions .eslintrc.js

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: pnpm/action-setup@v4
with:
version: 8
version: 9
- name: Setup Node
uses: actions/setup-node@v4
with:
Expand All @@ -25,9 +25,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: pnpm/action-setup@v4
with:
version: 8
version: 9
- name: Setup Node
uses: actions/setup-node@v4
with:
Expand Down
35 changes: 35 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import tseslint from 'typescript-eslint';

export default tseslint.config({
ignores: ['dist', 'vitest.config.ts', 'tests'],
languageOptions: {
parserOptions: {
project: './tsconfig.json',
},
},
rules: {
quotes: ['error', 'single'],
semi: 'off',
'no-debugger': 'error',
'no-empty': ['warn', { allowEmptyCatch: true }],
'no-process-exit': 'off',
'no-useless-escape': 'off',
'prefer-const': [
'warn',
{
destructuring: 'all',
},
],
'sort-imports': 'off',
'node/no-missing-import': 'off',
'node/no-missing-require': 'off',
'node/no-deprecated-api': 'off',
'node/no-unpublished-import': 'off',
'node/no-unpublished-require': 'off',
'node/no-unsupported-features/es-syntax': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
});
31 changes: 13 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,31 +22,26 @@
"start-example": "wrangler dev example/index.ts --config=example/wrangler.toml --local=true",
"prettier": "prettier --write --list-different \"**/*.ts\"",
"prettier:check": "prettier --check \"**/*.ts\"",
"lint": "eslint --ext .ts .",
"lint-fix": "eslint --fix --ext .ts .",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"prepublish": "run-p build:*",
"wrangler": "wrangler",
"version": "pnpm run build && git add -A src/version.ts"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240208.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^1.24.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"firebase-tools": "^13.3.0",
"hono": "^4.0.4",
"miniflare": "^3.20240129.3",
"@cloudflare/workers-types": "^4.20241224.0",
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"firebase-tools": "^13.29.1",
"hono": "^4.6.15",
"miniflare": "^3.20241218.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"undici": "^6.6.2",
"vitest": "^1.3.0",
"wrangler": "^3.28.3"
"vitest": "^2.1.8",
"wrangler": "^3.99.0"
},
"keywords": [
"web",
Expand Down
Loading
Loading