1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
| { "folders": [{ "path": "." }], "settings": { "editor.tabSize": 4, "editor.detectIndentation": false, "editor.formatOnSave": true, "editor.formatOnPaste": true, "editor.formatOnType": true, "editor.suggest.snippetsPreventQuickSuggestions": false, "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, "files.trimFinalNewlines": true,
"files.exclude": { "**/.git": true, "**/node_modules": true, "**/dist": true, "**/.venv": true, "**/target": true, "**/.idea": true, "**/.settings": true }, "files.watcherExclude": { "**/node_modules/**": true, "**/dist/**": true, "**/.git/**": true, "**/.venv/**": true, "**/target/**": true },
"maven.executable.options": "D:\\java\\apache-maven-3.8.4\\bin\\mvn", "java.configuration.maven.userSettings": "D:\\java\\apache-maven-3.8.4\\conf\\settings.xml", "java.completion.chain.enabled": true, "java.completion.matchCase": "off", "java.signatureHelp.description.enabled": true, "java.dependency.showMembers": true, "java.debug.logLevel": "error", "java.errors.incompleteClasspath.severity": "ignore", "[java]": { "editor.defaultFormatter": "redhat.java" }, "java.semanticHighlighting.enabled": true, "java.jdk.ls.java.home": "D:\\java\\jdk-17", "java.configuration.runtimes": [ { "name": "JavaSE-1.8", "path": "D:\\java\\jdk-8", "default": true } ], "java.home": "D:\\java\\jdk-17", "java.import.gradle.enabled": false, "java.import.gradle.wrapper.enabled": false,
"[go]": { "editor.insertSpaces": false, "editor.formatOnSave": true, "editor.formatOnType": true,
"editor.codeActionsOnSave": { "source.organizeImports": "explicit" },
"editor.suggest.snippetsPreventQuickSuggestions": false },
"go.useLanguageServer": true, "go.formatTool": "gofmt",
"go.toolsManagement.autoUpdate": false, "go.toolsManagement.checkForUpdates": "off",
"go.alternateTools": { "go": "", "go-outline": "", "gopkgs": "", "guru": "", "gorename": "", "gotests": "", "gomodifytags": "", "impl": "", "fillstruct": "", "goplay": "", "godoctor": "", "godef": "", "goreturns": "", "golint": "", "dlv": "", "staticcheck": "" }
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python", "python.analysis.extraPaths": ["${workspaceFolder}/.venv/lib/python3.10/site-packages"], "python.analysis.logLevel": "Error", "python.analysis.autoSearchPaths": true, "python.analysis.completeFunctionParens": true, "python.analysis.autoImportCompletions": true, "python.analysis.typeCheckingMode": "off", "python.analysis.useLibraryCodeForTypes": true, "python.analysis.indexing": false, "python.analysis.importFormat": "absolute", "python.analysis.inlayHints.variableTypes": true, "python.analysis.inlayHints.functionReturnTypes": true, "[python]": { "editor.defaultFormatter": "ms-python.autopep8" }, "python.linting.enabled": true, "python.linting.pylintEnabled": true, "python.linting.mypyEnabled": true, "terminal.integrated.env.windows": { "PYTHONPATH": "${workspaceFolder}", "PYTHONDONTWRITEBYTECODE": "1" }, "terminal.integrated.env.linux": { "PYTHONPATH": "${workspaceFolder}", "PYTHONDONTWRITEBYTECODE": "1" }, "terminal.integrated.env.osx": { "PYTHONPATH": "${workspaceFolder}", "PYTHONDONTWRITEBYTECODE": "1" },
"php.validate.executablePath": "D:\\php\\php.exe", "php.validate.enable": true, "php.suggest.basic": true, "[php]": { "editor.defaultFormatter": "bmewburn.vscode-intelephense-client", "editor.formatOnSave": true },
"editor.defaultFormatter": "esbenp.prettier-vscode", "prettier.requireConfig": true, "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[typescriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[javascriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[vue]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "eslint.validate": [ "javascript", "typescript", "javascriptreact", "typescriptreact", "vue" ], "eslint.run": "onType", "typescript.preferences.importModuleSpecifier": "relative", "typescript.updateImportsOnFileMove.enabled": "always", "typescript.tsdk": "node_modules/typescript/lib", "typescript.enablePromptUseWorkspaceTsdk": true } }
|