forked from humanmade/authorship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthorship.code-workspace
44 lines (44 loc) · 972 Bytes
/
authorship.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
{
"extensions": {
"recommendations": [
"bmewburn.vscode-intelephense-client",
"breezelin.phpstan",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"felixfbecker.php-debug",
"johnbillion.vscode-wordpress-hooks",
"neilbrayfield.php-docblocker",
"shevaua.phpcs",
"stylelint.vscode-stylelint"
],
"unwantedRecommendations": [
"ikappas.phpcs"
]
},
"settings": {
"files.associations": {
".env.dist": "dotenv",
"*.neon.dist": "neon",
"*.xml.dist": "xml"
},
"files.exclude": {
"noop.php": true,
"vendor/roots/wordpress": true
},
"files.watcherExclude": {
"**/vendor/**": true,
"noop.php": true
},
"search.exclude": {
"noop.php": true,
"vendor/roots/wordpress": true
},
"phpstan.configuration": "phpstan.neon.dist",
"phpstan.level": "config"
},
"folders": [
{
"path": "."
}
],
}