-
Notifications
You must be signed in to change notification settings - Fork 3
/
prettier.config.js
33 lines (31 loc) · 1001 Bytes
/
prettier.config.js
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
module.exports = {
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features",
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"security.workspace.trust.untrustedFiles": "open",
"editor.fontLigatures": true,
"editor.renderWhitespace": "boundary",
"editor.renderControlCharacters": false,
"editor.rulers": [80, 100],
"editor.tabSize": 2,
"editor.trimAutoWhitespace": false,
"editor.wordWrap": "on",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.associations": {
".gitignore": "shellscript",
},
"emmet.syntaxProfiles": { javascript: "jsx" },
// eslint-disable-next-line no-template-curly-in-string
"window.title": "${activeEditorMedium}${separator}${rootName}",
"workbench.colorCustomizations": {
"editorWarning.foreground": "#ec0",
},
"editor.guides.indentation": true,
"editor.formatOnSave": true,
"editor.detectIndentation": false,
"window.zoomLevel": 1,
};