This repository has been archived by the owner on Jun 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.json
57 lines (57 loc) · 1.51 KB
/
settings.json
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
{
// Better PHPUnit
"better-phpunit.docker.enable": true,
"better-phpunit.docker.command": "php",
// Emmet
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"postcss": "css"
},
//
// * =============
// * Intellisense
// * ===========
//
// Path Intellisense
"typescript.suggest.paths": false,
"javascript.suggest.paths": false,
// Laravel Extra Intellisense
"LaravelExtraIntellisense.basePathForCode": "/var/www/html",
// Laravel Intelephense
"files.associations": {
"*.module": "php"
},
// Tailwind CSS IntelliSense
"tailwindCSS.includeLanguages": {
"blade": "html"
},
"tailwindCSS.classAttributes": [
"class",
"x-bind:class",
"x-transition:enter",
"x-transition:enter-start",
"x-transition:enter-end",
"x-transition:leave",
"x-transition:leave-start",
"x-transition:leave-end"
],
//
// * ===========
// * Foramtters
// * =========
//
// Prettier
"prettier.requireConfig": true,
"prettier.useEditorConfig": false,
// Blade Formatter
"bladeFormatter.format.sortTailwindcssClasses": true,
"bladeFormatter.format.wrapAttributes": "force-expand-multiline",
"bladeFormatter.format.sortHtmlAttributes": "none",
//
"[blade]": {
"editor.defaultFormatter": "shufo.vscode-blade-formatter"
},
"[php]": {
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
}
}