-
Notifications
You must be signed in to change notification settings - Fork 788
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
Hiram
committed
Feb 29, 2024
1 parent
06a27ed
commit c775d93
Showing
286 changed files
with
81,650 additions
and
12,847 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.{ts,js,vue,css}] | ||
indent_size = 2 | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# 打包路径 根据项目不同按需配置 | ||
VITE_BASE_URL = ./ | ||
|
||
# 开发者模式 | ||
ELECTRON_WEB_SERVER_PORT = 42710 | ||
ELECTRON_DEV_NETEASE_API_PORT = 30001 | ||
VITE_APP_API_URL = http://127.0.0.1:8345/api |
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,17 +1,4 @@ | ||
snapshot* | ||
dist | ||
release | ||
dist-electron | ||
dist_electron | ||
lib | ||
es | ||
esm | ||
node_modules | ||
src/_common | ||
static | ||
cypress | ||
script/test/cypress | ||
_site | ||
temp* | ||
static/ | ||
!.prettierrc.js | ||
dist | ||
out | ||
.gitignore |
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,17 @@ | ||
/* eslint-env node */ | ||
require('@rushstack/eslint-patch/modern-module-resolution') | ||
|
||
module.exports = { | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:vue/vue3-recommended', | ||
'@electron-toolkit', | ||
'@electron-toolkit/eslint-config-ts/eslint-recommended', | ||
'@vue/eslint-config-typescript/recommended', | ||
'@vue/eslint-config-prettier' | ||
], | ||
rules: { | ||
'vue/require-default-prop': 'off', | ||
'vue/multi-word-component-names': '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
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,29 +1,6 @@ | ||
node_modules | ||
.DS_Store | ||
|
||
dist | ||
out | ||
thumbnail | ||
|
||
# build files | ||
es/ | ||
dist/ | ||
dist-electron/ | ||
dist_electron/ | ||
release/ | ||
typings/ | ||
|
||
_site | ||
package | ||
tmp* | ||
temp* | ||
coverage | ||
test-report.html | ||
.idea/ | ||
yarn-error.log | ||
*.zip | ||
.history | ||
.stylelintcache | ||
yarn.lock | ||
package-lock.json | ||
pnpm-lock.yaml | ||
.env.local | ||
.env.*.local | ||
.DS_Store | ||
*.log* |
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,5 @@ | ||
registry=https://registry.npmmirror.com | ||
electron_mirror=https://npmmirror.com/mirrors/electron/ | ||
# electron_mirror=https://registry.npmmirror.com/-/binary/electron/ | ||
electron_builder_binaries_mirror=https://npmmirror.com/mirrors/electron-builder-binaries/ | ||
shamefully-hoist=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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
out | ||
dist | ||
pnpm-lock.yaml | ||
LICENSE.md | ||
tsconfig.json | ||
tsconfig.*.json |
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 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
Oops, something went wrong.