-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathchunks-webpack-plugin.code-workspace
More file actions
64 lines (64 loc) · 1.32 KB
/
chunks-webpack-plugin.code-workspace
File metadata and controls
64 lines (64 loc) · 1.32 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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.defaultFormatter": "biomejs.biome",
"[javascript][typescript][postcss][html][markdown][json]": {
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.rulers": [100]
},
"[markdown][html]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.wordWrap": "off"
},
"[yaml]": {
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.autoIndent": "none"
},
"[javascript][typescript][css][json]": {
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit"
}
},
"files.associations": {
"*.css": "postcss",
"*.html": "html",
"*.ts": "typescript",
"*.json": "json",
"*.yaml": "yaml",
"*.yml": "yaml"
},
"prettier.configPath": "./config/prettier.config.cjs",
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/node_modules": true
},
"files.eol": "\n"
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"davidanson.vscode-markdownlint",
"biomejs.biome",
"dbaeumer.vscode-eslint"
]
},
"launch": {
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Node: Nodemon",
"restart": true
}
]
}
}