-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
116 changed files
with
7,355 additions
and
9,709 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
src-tauri |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"extends": "@antfu", | ||
"rules": { | ||
"eqeqeq": "off" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,22 @@ | ||
build/bin | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
frontend/dist | ||
frontend/wailsjs | ||
tmp | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"Vue.volar", | ||
"tauri-apps.tauri-vscode", | ||
"rust-lang.rust-analyzer", | ||
"lokalise.i18n-ally", | ||
"antfu.iconify", | ||
"antfu.unocss", | ||
"vue.volar" | ||
"antfu.unocss" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,36 @@ | ||
{ | ||
// 使用 IntellliSense 来了解可能的属性。 | ||
// 悬停以查看现有属性的描述。 | ||
// 更多详情访问:https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Wails: Debug", | ||
"type": "go", | ||
"type": "lldb", | ||
"request": "launch", | ||
"mode": "exec", | ||
"program": "${workspaceFolder}/build/bin/shion-debug.exe", | ||
"preLaunchTask": "build", | ||
"cwd": "${workspaceFolder}", | ||
"env": {} | ||
"name": "Tauri Development Debug", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--manifest-path=./src-tauri/Cargo.toml", | ||
"--no-default-features" | ||
] | ||
}, | ||
// task for the `beforeDevCommand` if used, must be configured in `.vscode/tasks.json` | ||
"preLaunchTask": "ui:dev" | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Tauri Production Debug", | ||
"cargo": { | ||
"args": [ | ||
"build", | ||
"--release", | ||
"--manifest-path=./src-tauri/Cargo.toml" | ||
] | ||
}, | ||
// task for the `beforeBuildCommand` if used, must be configured in `.vscode/tasks.json` | ||
"preLaunchTask": "ui:build" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
{ | ||
"i18n-ally.localesPaths": ["frontend/src/locales"], | ||
"i18n-ally.localesPaths": [ | ||
"src/locales" | ||
], | ||
"i18n-ally.keystyle": "nested", | ||
"unocss.root": "frontend", | ||
"prettier.enable": false, | ||
"editor.formatOnSave": false, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
}, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
## shion | ||
# shion |
Oops, something went wrong.