Exclude recursive directory from intelephense
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
17ed8430c9
commit
afc65d8cf3
15
.vscode/settings.json
vendored
15
.vscode/settings.json
vendored
|
@ -4,5 +4,18 @@
|
|||
"javascript.format.placeOpenBraceOnNewLineForFunctions": true,
|
||||
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
|
||||
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
|
||||
"typescript.format.placeOpenBraceOnNewLineForFunctions": true
|
||||
"typescript.format.placeOpenBraceOnNewLineForFunctions": true,
|
||||
"intelephense.files.exclude": [
|
||||
"**/.git/**",
|
||||
"**/.svn/**",
|
||||
"**/.hg/**",
|
||||
"**/CVS/**",
|
||||
"**/.DS_Store/**",
|
||||
"**/node_modules/**",
|
||||
"**/bower_components/**",
|
||||
"**/vendor/**/{Tests,tests}/**",
|
||||
"**/.history/**",
|
||||
"**/vendor/**/vendor/**",
|
||||
"test/website/themes/mantra/**"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue