快检标准新增

This commit is contained in:
2026-06-16 15:35:54 +08:00
parent be215d604d
commit 7f0f8a3a2f
15 changed files with 684 additions and 50 deletions

View File

@@ -0,0 +1,113 @@
{
"folders": [
{
"path": "../jeecg-boot",
"name": "后端 (jeecg-boot)"
}
],
"settings": {
"java.compile.nullAnalysis.mode": "automatic",
"java.import.maven.enabled": true,
"java.import.maven.recursive": true,
"java.configuration.updateBuildConfiguration": "automatic",
"java.autobuild.enabled": true,
"java.import.maven.offline.enabled": false,
"java.configuration.maven.notCoveredPluginExecutionSeverity": "ignore",
"java.jdt.ls.java.home": "C:\\Program Files\\Java\\jdk-17",
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx4G -Xms100m -Xlog:disable",
"java.configuration.runtimes": [
{
"name": "JavaSE-17",
"path": "C:\\Program Files\\Java\\jdk-17",
"default": true
}
],
"java.maven.downloadSources": true,
"java.eclipse.downloadSources": true,
"java.project.importOnFirstTimeStartup": "automatic",
"java.configuration.checkProjectSettingsExclusions": false,
"java.import.exclusions": [
"**/jeecg-server-cloud/**",
"**/jeecg-boot-platform/**",
"**/node_modules/**"
],
"java.project.resourceFilters": [
"node_modules",
".git",
"jeecg-server-cloud",
"jeecg-boot-platform"
],
"java.debug.settings.console": "integratedTerminal",
"java.debug.settings.vmArgs": "-Dfile.encoding=UTF-8 -Dspring.main.banner-mode=log -Dspring.banner.charset=UTF-8 -Dlogging.charset.console=GBK",
"files.exclude": {
"**/target": true
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "JeecgSystemApplication (单体)",
"request": "launch",
"mainClass": "org.jeecg.JeecgSystemApplication",
"projectName": "jeecg-system-start",
"cwd": "${workspaceFolder}/jeecg-module-system/jeecg-system-start",
"vmArgs": "-Dfile.encoding=UTF-8 -Dspring.main.banner-mode=log -Dspring.banner.charset=UTF-8 -Dlogging.charset.console=GBK"
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Maven: compile",
"type": "shell",
"command": "mvn",
"args": [
"compile",
"-pl",
"jeecg-module-system/jeecg-system-start",
"-am",
"-DskipTests",
"-q"
],
"options": {
"cwd": "${workspaceFolder}",
"env": {
"JAVA_HOME": "C:\\Program Files\\Java\\jdk-17"
}
},
"problemMatcher": "$javac",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Maven: clean compile",
"type": "shell",
"command": "mvn",
"args": [
"clean",
"compile",
"-pl",
"jeecg-module-system/jeecg-system-start",
"-am",
"-DskipTests"
],
"options": {
"cwd": "${workspaceFolder}",
"env": {
"JAVA_HOME": "C:\\Program Files\\Java\\jdk-17"
}
},
"problemMatcher": "$javac",
"group": "build"
}
]
},
"extensions": {
"recommendations": ["vscjava.vscode-java-pack"]
}
}

View File

@@ -0,0 +1,81 @@
{
"folders": [
{
"path": "../yy-admin-master",
"name": "桌面端 (yy-admin-master)"
}
],
"settings": {
"dotnet.defaultSolution": "YY.Admin.Entry.sln",
"files.exclude": {
"**/_tmp_build_out": true,
"**/_build_verify_out": true,
"**/bin": true,
"**/obj": true
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "YY.Admin 一键启动",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "YY.Admin: build",
"program": "${workspaceFolder}/YY.Admin/bin/Debug/net8.0-windows10.0.19041/win-x64/YY.Admin.exe",
"cwd": "${workspaceFolder}/YY.Admin/bin/Debug/net8.0-windows10.0.19041/win-x64",
"console": "internalConsole",
"stopAtEntry": false
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "YY.Admin: restore",
"type": "process",
"command": "C:\\Program Files\\dotnet\\dotnet.exe",
"args": ["restore", "YY.Admin.Entry.sln"],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": "$msCompile"
},
{
"label": "YY.Admin: build",
"type": "process",
"command": "C:\\Program Files\\dotnet\\dotnet.exe",
"args": ["build", "YY.Admin.Entry.sln", "-c", "Debug"],
"options": {
"cwd": "${workspaceFolder}"
},
"dependsOn": "YY.Admin: restore",
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "YY.Admin: run (script)",
"type": "process",
"command": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"args": [
"-NoProfile",
"-ExecutionPolicy",
"Bypass",
"-File",
"${workspaceFolder}\\.vscode\\run-yyadmin.ps1"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": "$msCompile"
}
]
},
"extensions": {
"recommendations": ["ms-dotnettools.csharp", "ms-dotnettools.csdevkit"]
}
}

View File

@@ -0,0 +1,88 @@
{
"folders": [
{
"path": "../jeecgboot-vue3",
"name": "前端 (jeecgboot-vue3)"
}
],
"settings": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact", "vue"],
"typescript.tsdk": "node_modules/typescript/lib",
"files.exclude": {
"**/node_modules": true,
"**/dist": true
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "调试前端 (Chrome)",
"url": "http://localhost:3100",
"webRoot": "${workspaceFolder}",
"preLaunchTask": "pnpm dev"
},
{
"type": "node",
"request": "launch",
"name": "pnpm dev",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["run", "dev"],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**", "**/node_modules/**"]
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "pnpm dev",
"type": "shell",
"command": "pnpm run dev",
"options": {
"cwd": "${workspaceFolder}"
},
"isBackground": true,
"problemMatcher": {
"owner": "vite",
"pattern": { "regexp": "^$" },
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "(Local:|ready in|http://localhost)"
}
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "pnpm build",
"type": "shell",
"command": "pnpm run build",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": "build"
}
]
},
"extensions": {
"recommendations": [
"Vue.volar",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint"
]
}
}

View File

@@ -0,0 +1,82 @@
{
"folders": [
{
"path": "../XSLPrintDot",
"name": "打印调节器 (XSLPrintDot)"
}
],
"settings": {
"go.useLanguageServer": true,
"go.toolsManagement.autoUpdate": true,
"files.exclude": {
"**/build/windows/installer/resources": true
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "wails dev",
"type": "node",
"request": "launch",
"runtimeExecutable": "wails",
"runtimeArgs": ["dev"],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal"
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "wails dev",
"type": "shell",
"command": "wails dev",
"options": {
"cwd": "${workspaceFolder}"
},
"isBackground": true,
"problemMatcher": {
"owner": "wails",
"pattern": { "regexp": "^$" },
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "(Listening|DevServer|Frontend Dev Server)"
}
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "wails build",
"type": "shell",
"command": "wails build",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": "build"
},
{
"label": "frontend: npm install",
"type": "shell",
"command": "npm install",
"options": {
"cwd": "${workspaceFolder}/frontend"
},
"problemMatcher": []
}
]
},
"extensions": {
"recommendations": [
"golang.go",
"Vue.volar",
"wailsapp.wails-vscode"
]
}
}