-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.app.code-workspace
69 lines (69 loc) · 2.45 KB
/
.app.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
{
"folders": [
{
"path": "."
}
],
"launch": {},
"settings": {
"php.version": "8.2",
"editor.formatOnSave": false,
"intelephense.format.enable": false,
"editor.defaultFormatter": "vscode.php-language-features",
"php.format.rules.indentBraces":false,
"php.format.rules.spaceAfterCast":false,
"php.format.rules.spaceAroundConcatenation":true,
"php.format.rules.spaceBeforeColonInReturnType":true,
"php.format.rules.alignMatchArmBodies":true,
"php.format.rules.alignConstants": true,
"php.format.rules.arrayInitializersAlignKeyValuePairs":true,
"php.format.rules.spaceWithinIfParens":true,
"php.format.rules.chainedMethodCallsSemicolonOnNewLine":true,
"php.format.rules.groupUseNewLineBeforeFirstDeclaration":true,
"php.format.rules.keepControlStatementsOnOneLine":true,
"php.format.rules.addCommaAfterLastArrayElement":false,
"php.format.rules.arrayInitializersNewLineBeforeFirstElement": true,
"php.format.rules.alignProperties": false,
"php.problems.excludeGitIgnore": true,
"php.sortUses.caseSensitive": true,
"php.docblock.variableSnippet": {
"@access":"public",
"@param":"mixed $VAR",
"@return":"void"
},
"[php]": {
"editor.defaultFormatter": "DEVSENSE.phptools-vscode",
"editor.formatOnSave": true
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features",
"editor.formatOnSave": true
},
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features",
"editor.formatOnSave": true
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features",
"editor.formatOnSave": true
},
"[xml]": {
"editor.formatOnSave": false
},
"[twig]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "serhatkaya.twig-formatter"
},
"files.associations": {
"*.tpl.html": "twig"
},
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml",
"editor.formatOnSave": false
}
}
}