-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
101 lines (101 loc) · 2.66 KB
/
settings.json
File metadata and controls
101 lines (101 loc) · 2.66 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"typescript.check.npmIsInstalled": false,
"editor.fontSize": 12,
"git.enableSmartCommit": true,
"editor.formatOnPaste": false,
"editor.formatOnType": true,
"editor.renderWhitespace": "boundary",
"editor.wordWrap": "on",
"editor.renderControlCharacters": false,
"workbench.startupEditor": "newUntitledFile",
"explorer.confirmDragAndDrop": false,
"editor.tabSize": 2,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"explorer.confirmDelete": false,
"solidity.soliumRules": {
"imports-on-top": 0,
"variable-declarations": 0,
"indentation": [null, 2],
"quotes": ["warn", "double"]
},
"window.zoomLevel": 0,
"javascript.updateImportsOnFileMove.enabled": "never",
"workbench.statusBar.feedback.visible": false,
"eslint.alwaysShowStatus": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
"editor.multiCursorModifier": "alt",
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.enabled": false,
"terminal.integrated.rendererType": "dom",
"editor.tokenColorCustomizations": {
"[Default Dark+]": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic",
"foreground": "#708090"
}
}
]
}
},
"editor.detectIndentation": false,
"files.eol": "\n",
"workbench.colorCustomizations": {
"[Default Dark+]": {
"statusBar.background": "#3c3c3c"
}
},
"files.exclude": {
"**/.git": false
},
"terminal.integrated.fontSize": 12,
"editor.renderFinalNewline": true,
"window.menuBarVisibility": "toggle",
"scm.diffDecorations": "none",
"breadcrumbs.enabled": false,
"workbench.colorTheme": "Atom One Dark",
"git.confirmSync": false,
"git.autofetch": false,
"git.inputValidationLength": 72,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"todohighlight.keywords": [
{
"text": "NOTE:",
"color": "#fff",
"backgroundColor": "grey",
"overviewRulerColor": "rgb(128, 128, 128, 0.8)"
}
]
}