-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathsettings.json
More file actions
48 lines (42 loc) · 1.09 KB
/
settings.json
File metadata and controls
48 lines (42 loc) · 1.09 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
{
"markdown.styles": [
"public/vscode_markdown.css"
],
"// Documentation linting and formatting": "",
"vale.valeCLI.config": ".vale.ini",
"vale.valeCLI.path": "vale",
"vale.core.useCLI": true,
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.rulers": [120],
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 120
},
"// MDX settings": "",
"[mdx]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.rulers": [120],
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 120
},
"// YAML settings": "",
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"// Astro settings": "",
"[astro]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"// File explorer": "",
"files.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/.astro": true
}
}