Skip to content

Commit

Permalink
Merge pull request #171 from hiroki0525/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
hiroki0525 authored Dec 31, 2024
2 parents d154614 + 7eff9c6 commit d930cac
Show file tree
Hide file tree
Showing 27 changed files with 1,884 additions and 2,943 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

46 changes: 0 additions & 46 deletions .eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
using: "composite"
steps:
- name: Setup pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.13.1
20.18.1
8 changes: 0 additions & 8 deletions .prettierrc.json

This file was deleted.

51 changes: 51 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false },
"files": {
"ignoreUnknown": false,
"ignore": ["dist", ".husky", "package.json", ".node_modules"]
},
"formatter": {
"enabled": true,
"useEditorconfig": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80,
"attributePosition": "auto",
"bracketSpacing": true
},
"organizeImports": { "enabled": true },
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedImports": "error"
},
"suspicious": {
"noExplicitAny": "off"
},
"style": {
"noNonNullAssertion": "off"
},
"complexity": {
"noExcessiveNestedTestSuites": "off"
}
}
},
"javascript": {
"formatter": {
"jsxQuoteStyle": "single",
"quoteProperties": "asNeeded",
"trailingCommas": "es5",
"semicolons": "always",
"arrowParentheses": "asNeeded",
"bracketSameLine": false,
"quoteStyle": "single",
"attributePosition": "auto",
"bracketSpacing": true
}
}
}
39 changes: 18 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"test": "run-p test:*",
"test:browser": "jest",
"test:server": "jest --env=node",
"test:lint": "eslint src/",
"test:prettier": "prettier src/",
"test:check": "biome ci ./src",
"check": "biome check ./src",
"build": "tsup",
"prepare": "husky install"
},
Expand All @@ -50,30 +50,24 @@
},
"homepage": "https://github.com/hiroki0525/idle-task#readme",
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.14",
"@types/node": "^20.11.8",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"bundlemon": "^2.0.2",
"eslint": "^8",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-unused-imports": "3.2.0",
"husky": "9.0.11",
"@types/node": "^20.17.10",
"bundlemon": "^3.1.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all2": "^6.0.0",
"prettier": "3.2.5",
"semantic-release": "23.0.8",
"ts-jest": "29.1.5",
"npm-run-all2": "^7.0.2",
"semantic-release": "24.2.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "5.4.5"
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"typescript": "5.7.2"
},
"release": {
"plugins": [
Expand Down Expand Up @@ -102,5 +96,8 @@
}
]
},
"packageManager": "pnpm@9.1.4"
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.15.2"
}
Loading

0 comments on commit d930cac

Please sign in to comment.