Skip to content

Commit

Permalink
Merge pull request #138 from honey32/develop
Browse files Browse the repository at this point in the history
develop -> main `v1.4.1`
  • Loading branch information
honey32 authored Mar 19, 2024
2 parents 57db690 + d49c0c3 commit a8d5c36
Show file tree
Hide file tree
Showing 35 changed files with 3,129 additions and 8,319 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

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

This file was deleted.

10 changes: 0 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,6 @@ updates:
interval: "weekly"
open-pull-requests-limit: 20
groups:
eslint:
patterns:
- eslint
- eslint-*
- '@typescript-eslint*'
jest:
patterns:
- jest
- '@types/jest'
- ts-jest
parcel:
patterns:
- parcel
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/nodejs-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@ jobs:
${{ runner.os }}-node-
- name: Dependencies
run: npm ci
- name: Setup Biome
uses: biomejs/setup-biome@v2
with:
version: latest
- name: Build
run: npm run build --if-present
- name: Test
run: npm test
- name: Lint
run: npm run lint
- name: Type Check
run: npm run check
- name: Biome CI
run: biome ci .
1 change: 0 additions & 1 deletion .prettierrc

This file was deleted.

3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["biomejs.biome"]
}
20 changes: 11 additions & 9 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": true,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
}
}
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true,
"[json]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"prettier.enable": false,
"eslint.enable": false
}
23 changes: 23 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"$schema": "https://biomejs.dev/schemas/1.6.1/schema.json",
"organizeImports": {
"enabled": true
},
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"performance": {
"noAccumulatingSpread": "warn"
}
}
},
"formatter": {
"indentStyle": "space"
}
}
5 changes: 0 additions & 5 deletions jest.config.js

This file was deleted.

Loading

0 comments on commit a8d5c36

Please sign in to comment.