chore(biome): remove biome config and update ci pipeline description

This commit is contained in:
Shintaro Jokagi 2025-05-29 00:33:11 +12:00
parent fd6193a0a6
commit 9bae866031
No known key found for this signature in database
GPG key ID: 0DDF8FA44C9A0DA8
2 changed files with 1 additions and 62 deletions

View file

@ -43,7 +43,7 @@ jobs:
path: |
node_modules
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
- name: Run Biome check
- name: Run Eslint check
run: npm run lint
prettier:

View file

@ -1,61 +0,0 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"nursery": {
"useSortedClasses": "info"
},
"suspicious": {
"noExplicitAny": "warn"
}
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 128,
"useEditorconfig": true
},
"files": {
"ignore": ["node_modules", ".git", "dist"]
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "asNeeded"
}
},
"assists": {
"actions": {
"source": {
"sortJsxProps": "on"
}
}
},
"vcs": {
"enabled": true,
"clientKind": "git",
"defaultBranch": "main",
"root": ".",
"useIgnoreFile": true
},
"overrides": [
{
"include": ["*.astro"],
"linter": {
"rules": {
"style": {
"useConst": "off",
"useImportType": "off"
}
}
}
}
]
}