-
Notifications
You must be signed in to change notification settings - Fork 1
/
php.code-workspace
106 lines (106 loc) · 2.48 KB
/
php.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"terminal.integrated.env.linux": {
"PATH": "${env:PATH}:${workspaceFolder}/node_modules/.bin:${workspaceFolder}/bin:${workspaceFolder}/vendor/bin",
"NUITKA_CACHE_DIR": "${workspaceFolder}\\tmp\\nuitka-cache",
"ESLINT_USE_FLAT_CONFIG": "true",
"DEBUG_PKG": "1"
},
"terminal.integrated.env.windows": {
"PATH": "${env:PATH};${workspaceFolder}\\node_modules\\.bin;${workspaceFolder}\\bin;${workspaceFolder}\\vendor\\bin",
"NUITKA_CACHE_DIR": "${workspaceFolder}\\tmp\\nuitka-cache",
"ESLINT_USE_FLAT_CONFIG": "true",
"DEBUG_PKG": "1"
},
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"Cygwin": {
"path": "C:\\cygwin64\\bin\\bash.exe",
"args": [
"--login",
"-i"
],
"env": {
"CHERE_INVOKING": "1"
}
}
},
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"debug.terminal.clearBeforeReusing": true,
"intelephense.maxMemory": 1028,
"intelephense.rename.exclude": [
"**/vendor/**",
"**/node_modules/**",
"**/tmp/**",
"**/.cache/**"
],
"intelephense.references.exclude": [
"**/vendor/**",
"**/node_modules/**",
"**/tmp/**",
"**/.cache/**"
],
"intelephense.trace.server": "messages",
"intelephense.completion.maxItems": 100,
"intelephense.diagnostics.run": "onSave",
"intelephense.files.exclude": [
"**/.DS_Store/**",
"**/.cache/**",
"**/.git/**",
"**/.hg/**",
"**/.history/**",
"**/.idea/**",
"**/.svn/**",
"**/.yarn/**",
"**/CVS/**",
"**/Thumbs.db",
"**/assets/**/*",
"**/bower_components/**",
"**/config/**/*",
"**/dist/**",
"**/node_modules/**",
"**/tmp/**",
"**/.venv/**",
"**/venv/**",
"**/assets/**",
"**/*.sqlite"
],
"intelephense.files.associations": [
"*.php",
"*.phtml"
],
"intelephense.telemetry.enabled": false,
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/*.py": true
},
"git.autoStash": true,
"git.useCommitInputAsStashMessage": true
}
}