-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode-settings.json
69 lines (54 loc) · 1.54 KB
/
vscode-settings.json
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
{
// Editor appearance
"editor.fontSize": 20,
"editor.lineHeight": 30,
"editor.tabSize": 2,
// Block blinking cursor
"editor.cursorStyle": "block",
"editor.cursorBlinking": "phase",
// Format on save
"editor.formatOnSave": true,
// Hide minimap
"editor.minimap.enabled": false,
// Disallow scrolling past the last line
"editor.scrollBeyondLastLine": false,
// Max line width
"editor.wordWrap": "on",
"editor.rulers": [
80
],
// Hide color picker/decorator on CSS files
"editor.colorDecorators": false,
// Color and icon themes
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "file-icons",
// Start off with an empty window
"workbench.startupEditor": "newUntitledFile",
// Hide the "open editors" left pane
"explorer.openEditors.visible": 0,
// Disable confirmation when moving things around in the explorer panel
"explorer.confirmDragAndDrop": false,
// EditorConfig-like settings
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
// Flow support
"flow.useNPMPackagedFlow": true,
"javascript.validate.enable": false,
// Sort CSS rules alphabetically using CSSComb
"csscomb.formatOnSave": true,
"csscomb.preset": {
"sort-order-fallback": "abc",
"sort-order": [
"..."
]
},
// Prettier
"prettier.singleQuote": true,
"prettier.disableLanguages": [
"html",
"json",
"markdown"
],
// If you’re using ESLint, force Prettier to format your code based on your .eslintrc.json
"prettier.eslintIntegration": true
}