-
Notifications
You must be signed in to change notification settings - Fork 0
/
ran-plugin-lib.code-workspace
130 lines (127 loc) · 2.64 KB
/
ran-plugin-lib.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"folders": [
{
"path": "./"
}
],
"settings": {
// Force use of PHP Sniffer & Beautifier Plugin for formatting,
// Otherwise PHP Intelephense or other formatter will confilct with WP Standards rules
"[php]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "valeryanm.vscode-phpsab"
},
// PHP DocBlocks Plugin
"php-docblocker.returnGap": true,
"php-docblocker.alignParams": true,
"php-docblocker.alignReturn": true,
"php-docblocker.useShortNames": true,
// PHP Namespace Resolver Plugin
"namespaceResolver.showMessageOnStatusBar": true,
"namespaceResolver.sortNatural": true,
"namespaceResolver.sortAlphabetically": true,
"namespaceResolver.sortOnSave": true,
// PHP Sniffer & Beautifier Plugin
"phpsab.executablePathCBF": "./vendor/bin/phpcbf",
"phpsab.executablePathCS": "./vendor/bin/phpccs",
"phpsab.fixerArguments": [],
"phpsab.snifferShowSources": true,
"phpsab.standard": "./.phpcs.xml",
"phpsab.debug": true,
"phpsab.allowedAutoRulesets": [
".phpcs.xml",
".phpcs.xml.dist",
"phpcs.xml",
"phpcs.xml.dist",
"phpcs.ruleset.xml",
"ruleset.xml"
],
"intelephense.stubs": [
"apache",
"bcmath",
"bz2",
"calendar",
"com_dotnet",
"Core",
"ctype",
"curl",
"date",
"dba",
"dom",
"enchant",
"exif",
"FFI",
"fileinfo",
"filter",
"fpm",
"ftp",
"gd",
"gettext",
"gmp",
"hash",
"iconv",
"imap",
"intl",
"json",
"ldap",
"libxml",
"mbstring",
"meta",
"mysqli",
"oci8",
"odbc",
"openssl",
"pcntl",
"pcre",
"PDO",
"pdo_ibm",
"pdo_mysql",
"pdo_pgsql",
"pdo_sqlite",
"pgsql",
"Phar",
"posix",
"pspell",
"random",
"readline",
"Reflection",
"session",
"shmop",
"SimpleXML",
"snmp",
"soap",
"sockets",
"sodium",
"SPL",
"sqlite3",
"standard",
"superglobals",
"sysvmsg",
"sysvsem",
"sysvshm",
"tidy",
"tokenizer",
"xml",
"xmlreader",
"xmlrpc",
"xmlwriter",
"xsl",
"Zend OPcache",
"zip",
"zlib",
"wordpress"
],
"intelephense.trace.server": "off",
"intelephense.references.exclude": [],
"intelephense.rename.exclude": [],
"intelephense.environment.documentRoot": "./",
"intelephense.environment.includePaths": ["./inc/**"],
"intelephense.telemetry.enabled": false,
"intelephense.completion.fullyQualifyGlobalConstantsAndFunctions": true,
"intelephense.environment.shortOpenTag": false,
"intelephense.phpdoc.useFullyQualifiedNames": true,
"intelephense.rename.namespaceMode": "all",
"intelephense.format.braces": "psr12",
"intelephense.files.associations": ["*.php", "*.phtml"]
}
}