vscode 用户配置文件

windows下,配置python3,php,flake8,git等

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
{
"editor.fontFamily": "Consolas, monospace",
"editor.fontSize": 18,
"editor.detectIndentation": false,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "all",
"editor.tabSize": 4,
"editor.minimap.enabled": false,
"editor.wordWrap": "on",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"git.path": "D:/IDE/PortableGit/bin/git.exe",
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.autorefresh": true,
"php.validate.executablePath": "D:/IDE/php-5.6/php.exe",
"python.pythonPath": "D:/IDE/Python37/python.exe",
"python.formatting.provider": "yapf",
"python.formatting.yapfPath": "D:/IDE/Python37/Scripts/yapf.exe",
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": "flake8",
"files.exclude": {
"**/__pycache__": true,
"**/.__pycache__": true,
"**/.pyc": true
},
"launch": {
"configurations": [
{
"name": "Python: Current File (Integrated Terminal)",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Python: Current File (console Terminal)",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "internalConsole",
},
{
"name": "Python: Current File (External Terminal)",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "externalTerminal"
},
{
"type": "chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/*"
}
},
// ${workspaceRoot} the path of the folder opened in VS Code(VSCode中打开文件夹的路径)
// ${workspaceRootFolderName} the name of the folder opened in VS Code without any solidus (/)(VSCode中打开文件夹的路径, 但不包含"/")
// ${file} the current opened file(当前打开的文件)
// ${relativeFile} the current opened file relative to workspaceRoot(当前打开的文件,相对于workspaceRoot)
// ${fileBasename} the current opened file's basename(当前打开文件的文件名, 不含扩展名)
// ${fileDirname} the current opened file's dirname(当前打开文件的目录名)
// ${fileExtname} the current opened file's extension(当前打开文件的扩展名)
// ${cwd} the task runner's current working directory on startup()
// {
// "name": "Listen for XDebug",
// "type": "php",
// "request": "launch",
// "port": 9000
// },
// {
// "name": "Launch currently open script",
// "type": "php",
// "request": "launch",
// "program": "${file}",
// "cwd": "${fileDirname}",
// "port": 9000
// }
],
"compounds": []
},
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"python.jediEnabled": false,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"java.configuration.checkProjectSettingsExclusions": false,
}