-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
101 lines (101 loc) · 3.7 KB
/
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
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
{
"editor.autoIndent": true,
"editor.fontSize": 17,
"editor.lineHeight": 24,
"editor.fontLigatures": true,
"editor.fontFamily": "Dank Mono",
// "editor.fontFamily": "Operator Mono, Consolas, 'Courier New', monospace",
"editor.fontWeight": "300",
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"files.trimTrailingWhitespace": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"files.associations": {
"*.html": "html",
"*.js": "javascriptreact"
},
"npm-intellisense.importES6": true,
"npm-intellisense.importQuotes": "\"",
"npm-intellisense.importLinebreak": ";\r\n",
"npm-intellisense.importDeclarationType": "const",
"window.zoomLevel": 0,
"prettier.eslintIntegration": true,
"workbench.iconTheme": "material-icon-theme",
"workbench.fontAliasing": "antialiased",
"explorer.confirmDragAndDrop": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"material-icon-theme.showUpdateMessage": false,
"javascript.implicitProjectConfig.experimentalDecorators": true,
"gitlens.keymap": "alternate",
"cSpell.userWords": [
"compat",
"devtool",
"etfs",
"formik",
"graphql",
"iban",
"isin",
"onboarding",
"preact",
"scacap",
"waait",
"whitelabel"
],
"workbench.colorCustomizations": {
"activityBarBadge.background": "#2979FF",
"list.activeSelectionForeground": "#2979FF",
"list.inactiveSelectionForeground": "#2979FF",
"list.highlightForeground": "#2979FF",
"scrollbarSlider.activeBackground": "#2979FF50",
"editorSuggestWidget.highlightForeground": "#2979FF",
"textLink.foreground": "#2979FF",
"progressBar.background": "#2979FF",
"pickerGroup.foreground": "#2979FF",
"tab.activeBorder": "#2979FF",
"notificationLink.foreground": "#2979FF"
},
"npm.enableScriptExplorer": true,
"eslint.alwaysShowStatus": true,
"eslint.autoFixOnSave": true,
"eslint.enable": true,
"flow.runOnAllFiles": true,
"flow.useNPMPackagedFlow": true,
"[javascript]": {
"editor.formatOnSave": false
},
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.accessibilitySupport": "off",
"git.autofetch": true,
"prettier.requireConfig": true,
"prettier.singleQuote": true,
"prettier.tabWidth": 4,
"prettier.printWidth": 100,
"flow.showUncovered": true,
"workbench.colorTheme": "Night Owl",
"diffEditor.ignoreTrimWhitespace": false,
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.implicitProjectConfig.checkJs": true,
"javascript.validate.enable": false
}