-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact-boilers.code-workspace
65 lines (65 loc) · 2.29 KB
/
react-boilers.code-workspace
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
{
"folders": [
{
"name": "Next.JS Materialize CSS App",
"path": "."
},
{
"path": "/Users/cliffordcrerar/SERVERS"
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"workbench.editor.showTabs": true,
"editor.formatOnSave": true,
"jsFileHeader.Author": "Cliff Crerar",
"javascript.preferences.quoteStyle": "single",
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"typescript.validate.enable": false,
"typescript.referencesCodeLens.enabled": false,
"typescript.format.enable": false,
"javascript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifier": "relative",
"css.validate": true,
"css.lint.important": "warning",
"css.lint.duplicateProperties": "warning",
"css.lint.boxModel": "warning",
"html.format.indentInnerHtml": true,
"html.format.enable": true,
"css.trace.server": "messages",
"html.format.wrapAttributes": "aligned-multiple",
"editor.folding": true,
"html.format.wrapLineLength": 140,
"html.suggest.html5": true,
"workbench.editor.tabSizing": "shrink",
"workbench.editor.labelFormat": "default",
"workbench.editor.showIcons": true,
"workbench.editor.closeOnFileDelete": true,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.openPositioning": "right",
"workbench.settings.editor": "json",
"workbench.settings.useSplitJSON": true,
"editor.fontWeight": "500",
"editor.find.addExtraSpaceOnTop": true,
"editor.fontSize": 14,
"material-icon-theme.activeIconPack": "react",
"eslint.enable": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
"git.ignoreLimitWarning": true,
"editor.defaultFormatter": "EditorConfig.EditorConfig",
"[javascriptreact]": {
"editor.defaultFormatter": "EditorConfig.EditorConfig"
},
"javascript.validate.enable": false,
}
}