-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
99 lines (99 loc) · 4.16 KB
/
devcontainer.json
File metadata and controls
99 lines (99 loc) · 4.16 KB
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
// https://aka.ms/devcontainer.json
{
"name": "PHP",
"dockerComposeFile": "./docker-compose.yaml",
"service": "devcontainer",
"remoteUser": "abc",
"workspaceFolder": "/app",
"customizations": {
"vscode": {
"settings": {
"[javascript][typescript][vue]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[php]": {
"editor.defaultFormatter": "open-southeners.laravel-pint"
},
"[markdown]": {
"editor.defaultFormatter": "davidanson.vscode-markdownlint"
},
"bladeFormatter.format.noMultipleEmptyLines": true,
"bladeFormatter.format.sortHtmlAttributes": "idiomatic",
"bladeFormatter.format.sortTailwindcssClasses": true,
"bladeFormatter.format.wrapLineLength": 120,
"bladeFormatter.format.wrapAttributes": "force-expand-multiline",
"dotfiles.repository": "99linesofcode/dotfiles",
"dotfiles.targetPath": "/config/dotfiles",
"dotfiles.installCommand": "/config/dotfiles/install.sh",
"emmet.includeLanguages": {
"blade": "html",
"vue": "html",
"vue-html": "html"
},
"eslint.validate": ["javascript", "typescript", "vue"],
"files.associations": {
".php-cs-fixer*": "php"
},
"intelephense.format.enable": true,
"intelephense.files.exclude": [
"**/.git/**",
"**/database/migrations/**",
"**/node_modules/**",
"**/vendor/**/vendor/**"
],
"intelephense.environment.documentRoot": "${containerWorkspaceFolder}/public",
"intelephense.telemetry.enabled": false,
"laravel-pint.enable": true,
"stylelint.validate": ["css", "less", "postcss", "scss", "vue"],
// TODO update when proper support for glob patterns is released
// See: https://github.com/microsoft/vscode/issues/134415 and related
"search.exclude": {
"**/.git/**": true,
"**/.nuxt/**": true,
"**/.output/**": true,
"**/composer.lock": true,
"**/_ide_helper.php": true,
"**/_ide_helper_models.php": true,
"**/package.lock": true,
"**/storage/**": true,
"**/node_modules/**/node_modules/**": true,
"**/vendor/**/vendor/**": true
}
},
"extensions": [
// Global dependencies
"eamodio.gitlens",
"enkia.tokyo-night",
"GitHub.copilot",
"ms-vscode-remote.vscode-remote-extensionpack",
"asvetliakov.vscode-neovim",
// Formatters en Linters
"bierner.markdown-mermaid",
"DavidAnson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"gruntfuggly.todo-tree",
"jock.svg",
"naumovs.color-highlight",
"ms-azuretools.vscode-docker",
"stylelint.vscode-stylelint",
"mikestead.dotenv",
"vscode.docker",
"vscode.yaml",
"yo1dog.cursor-align",
"yzhang.markdown-all-in-one",
// PHP development
"bmewburn.vscode-intelephense-client",
"bradlc.vscode-tailwindcss",
"m1guelpf.better-pest",
"neilbrayfield.php-docblocker",
"onecentlin.laravel-blade",
"onecentlin.laravel5-snippets",
"open-southeners.laravel-pint",
"SanderRonde.phpstan-vscode",
"shufo.vscode-blade-formatter",
"xdebug.php-debug"
]
}
}
}