forked from NFDI4Chem/knowledge_base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierrc
More file actions
43 lines (37 loc) · 1020 Bytes
/
.prettierrc
File metadata and controls
43 lines (37 loc) · 1020 Bytes
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
{
"editor.defaultFormatter": "prettier.prettier-vscode",
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"prettier.useTabs": true,
"prettier.tabWidth": 4,
"prettier.bracketSpacing": true,
"json.schemas": [],
"files.eol": "\n",
"[markdown]": {
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"editor.defaultFormatter": "unifiedjs.vscode-remark"
},
"[typescriptreact]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
},
"[mdx]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
},
"[svg]": {
"editor.defaultFormatter": "jock.svg"
}
}