-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
1 parent
16dce9a
commit f4d37cf
Showing
78 changed files
with
322 additions
and
435 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,5 @@ | ||
*.sh | ||
node_modules | ||
lib | ||
*.md | ||
*.woff | ||
*.ttf | ||
.vscode | ||
.idea | ||
/dist/ | ||
/public | ||
/docs | ||
.vscode | ||
.local | ||
!.env-config.ts | ||
|
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,26 +1,25 @@ | ||
{ | ||
"recommendations": [ | ||
"afzalsayed96.icones", | ||
"antfu.iconify", | ||
"antfu.unocss", | ||
"christian-kohler.path-intellisense", | ||
"dbaeumer.vscode-eslint", | ||
"eamodio.gitlens", | ||
"editorconfig.editorconfig", | ||
"esbenp.prettier-vscode", | ||
"formulahendry.auto-complete-tag", | ||
"formulahendry.auto-close-tag", | ||
"formulahendry.auto-rename-tag", | ||
"kisstkondoros.vscode-gutter-preview", | ||
"lokalise.i18n-ally", | ||
"mhutchie.git-graph", | ||
"mikestead.dotenv", | ||
"naumovs.color-highlight", | ||
"pkief.material-icon-theme", | ||
"steoates.autoimport", | ||
"vue.volar", | ||
"vue.vscode-typescript-vue-plugin", | ||
"whtouche.vscode-js-console-utils", | ||
"zhuangtongfa.material-theme" | ||
] | ||
"recommendations": [ | ||
"afzalsayed96.icones", | ||
"antfu.iconify", | ||
"antfu.unocss", | ||
"christian-kohler.path-intellisense", | ||
"dbaeumer.vscode-eslint", | ||
"eamodio.gitlens", | ||
"editorconfig.editorconfig", | ||
"esbenp.prettier-vscode", | ||
"formulahendry.auto-complete-tag", | ||
"formulahendry.auto-close-tag", | ||
"formulahendry.auto-rename-tag", | ||
"kisstkondoros.vscode-gutter-preview", | ||
"lokalise.i18n-ally", | ||
"mhutchie.git-graph", | ||
"mikestead.dotenv", | ||
"naumovs.color-highlight", | ||
"pkief.material-icon-theme", | ||
"steoates.autoimport", | ||
"vue.volar", | ||
"whtouche.vscode-js-console-utils", | ||
"zhuangtongfa.material-theme" | ||
] | ||
} |
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,75 +1,88 @@ | ||
{ | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
}, | ||
"editor.fontLigatures": true, | ||
"editor.formatOnSave": false, | ||
"editor.guides.bracketPairs": "active", | ||
"editor.quickSuggestions": { | ||
"strings": true | ||
}, | ||
"editor.tabSize": 2, | ||
"eslint.alwaysShowStatus": true, | ||
"eslint.validate": ["javascript", "javascriptreact", "vue", "typescript", "typescriptreact", "html", "json", "jsonc"], | ||
"files.associations": { | ||
"*.env.*": "dotenv" | ||
}, | ||
"files.eol": "\n", | ||
"git.enableSmartCommit": true, | ||
"gutterpreview.paths": { | ||
"@": "/src", | ||
"~@": "/src" | ||
}, | ||
"material-icon-theme.activeIconPack": "angular", | ||
"material-icon-theme.files.associations": {}, | ||
"material-icon-theme.folders.associations": { | ||
"enum": "typescript", | ||
"enums": "typescript", | ||
"store": "context", | ||
"stores": "context", | ||
"composable": "hook", | ||
"composables": "hook", | ||
"directive": "tools", | ||
"directives": "tools", | ||
"business": "core", | ||
"request": "api", | ||
"adapter": "middleware" | ||
}, | ||
"path-intellisense.mappings": { | ||
"@": "${workspaceFolder}/src", | ||
"~@": "${workspaceFolder}/src", | ||
}, | ||
"terminal.integrated.cursorStyle": "line", | ||
"terminal.integrated.fontSize": 14, | ||
"terminal.integrated.fontWeight": 500, | ||
"terminal.integrated.tabs.enabled": true, | ||
"workbench.iconTheme": "material-icon-theme", | ||
"workbench.colorTheme": "One Dark Pro", | ||
"[html]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[javascript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[javascriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[markdown]": { | ||
"editor.defaultFormatter": "yzhang.markdown-all-in-one" | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[vue]": { | ||
"editor.defaultFormatter": "Vue.volar" | ||
} | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
}, | ||
"editor.fontLigatures": true, | ||
"editor.formatOnSave": false, | ||
"editor.guides.bracketPairs": "active", | ||
"editor.quickSuggestions": { | ||
"strings": true | ||
}, | ||
"editor.tabSize": 2, | ||
"eslint.alwaysShowStatus": true, | ||
"eslint.validate": [ | ||
"javascript", | ||
"javascriptreact", | ||
"typescript", | ||
"typescriptreact", | ||
"vue", | ||
"html", | ||
"json", | ||
"jsonc", | ||
"json5", | ||
"yaml", | ||
"yml", | ||
"markdown" | ||
], | ||
"files.associations": { | ||
"*.env.*": "dotenv" | ||
}, | ||
"files.eol": "\n", | ||
"git.enableSmartCommit": true, | ||
"gutterpreview.paths": { | ||
"@": "/src", | ||
"~@": "/src" | ||
}, | ||
"material-icon-theme.activeIconPack": "angular", | ||
"material-icon-theme.files.associations": {}, | ||
"material-icon-theme.folders.associations": { | ||
"enum": "typescript", | ||
"enums": "typescript", | ||
"store": "context", | ||
"stores": "context", | ||
"composable": "hook", | ||
"composables": "hook", | ||
"directive": "tools", | ||
"directives": "tools", | ||
"business": "core", | ||
"request": "api", | ||
"adapter": "middleware" | ||
}, | ||
"path-intellisense.mappings": { | ||
"@": "${workspaceFolder}/src", | ||
"~@": "${workspaceFolder}/src" | ||
}, | ||
"terminal.integrated.cursorStyle": "line", | ||
"terminal.integrated.fontSize": 14, | ||
"terminal.integrated.fontWeight": 500, | ||
"terminal.integrated.tabs.enabled": true, | ||
"workbench.iconTheme": "material-icon-theme", | ||
"workbench.colorTheme": "One Dark Pro", | ||
"[html]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[javascript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[javascriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[markdown]": { | ||
"editor.defaultFormatter": "yzhang.markdown-all-in-one" | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[vue]": { | ||
"editor.defaultFormatter": "Vue.volar" | ||
} | ||
} |
Oops, something went wrong.
f4d37cf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
soybean-admin – ./
soybean-admin-git-main-honghuangdc.vercel.app
www.soybean.pro
soybean-admin-honghuangdc.vercel.app
soybean.pro
soybean-admin.vercel.app