chore: lint with biome

This commit is contained in:
taskylizard 2024-07-10 03:50:50 +00:00
parent a69a834899
commit 9f39e9663d
No known key found for this signature in database
GPG Key ID: 1820131ED1A24120
4 changed files with 157 additions and 2747 deletions

52
biome.json Normal file
View File

@ -0,0 +1,52 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"extends": ["@taskylizard/biome-config"],
"formatter": {
"enabled": false
},
"linter": {
"rules": {
"style": {
"noDefaultExport": "off",
"useNamingConvention": {
"level": "error",
"options": {
"strictCase": false,
"conventions": [
{
"selector": {
"kind": "typeParameter"
},
"formats": ["PascalCase"]
},
{
"selector": {
"kind": "any"
},
"match": "[ab_]|(.{2,})"
},
{
"selector": {
"kind": "objectLiteralMember"
},
"match": ".*"
},
{
"selector": {
"kind": "typeMember"
},
"match": ".*"
},
{
"selector": {
"kind": "variable"
},
"match": ".*"
}
]
}
}
}
}
}
}

View File

@ -1,7 +0,0 @@
// @ts-check
import tasky from '@taskylizard/eslint-config'
export default tasky({
vue: true,
browser: true
})

View File

@ -1,7 +1,7 @@
{
"name": "fmhy",
"type": "module",
"packageManager": "pnpm@9.0.4",
"packageManager": "pnpm@9.4.0",
"scripts": {
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
@ -12,7 +12,9 @@
"api:preview": "node .output/server/index.mjs",
"og:dev": "x-satori -t ./.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev",
"format": "prettier -w --cache --check .",
"lint": "eslint .vitepress -f pretty --cache",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"lint:fix:unsafe": "biome lint . --write --unsafe",
"postinstall": "nitropack prepare"
},
"dependencies": {
@ -33,9 +35,11 @@
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@iconify-json/carbon": "^1.1.28",
"@iconify-json/heroicons-solid": "^1.1.11",
"@iconify-json/twemoji": "^1.1.15",
"@taskylizard/biome-config": "^1.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.15",
"@types/nprogress": "^0.2.3",

File diff suppressed because it is too large Load Diff