refactor: 统一代码风格并更新依赖配置

- 统一使用单引号替代双引号
- 移除不必要的分号
- 更新prettier配置使用更宽松的格式
- 添加eslint配置文件和相关依赖
- 更新package.json中的脚本和依赖版本
This commit is contained in:
houakang
2026-04-10 10:39:41 +08:00
parent 4d578b3f0b
commit c738e638cf
15 changed files with 1004 additions and 429 deletions

View File

@@ -5,22 +5,22 @@
"description": "My Electron application description",
"main": ".vite/build/main.js",
"private": true,
"type": "module",
"scripts": {
"start": "electron-forge start",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "echo \"No linting configured\"",
"lint": "eslint . --fix --cache",
"prepare": "husky",
"format": "prettier --write .",
"format:check": "prettier --check ."
"format": "prettier --write src/"
},
"keywords": [],
"author": "houakang",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-deb": "^7.11.1",
"@electron-forge/maker-rpm": "^7.11.1",
@@ -30,14 +30,18 @@
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-vite": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@eslint/js": "^9.37.0",
"@tailwindcss/vite": "^4.2.2",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/eslint-config-prettier": "^10.2.0",
"electron": "^41.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint": "^9.37.0",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vue": "~10.5.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "3.8.1",
"lint-staged": "^16.2.6",
"prettier": "3.6.2",
"tailwindcss": "^4.2.2",
"vite": "^5.4.21"
},