-
Notifications
You must be signed in to change notification settings - Fork 1
/
babel-plugin-module-extension-resolver.code-workspace
34 lines (34 loc) · 1.34 KB
/
babel-plugin-module-extension-resolver.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"eslint.enable": true,
"json.format.enable": true,
"javascript.format.enable": true,
"javascript.format.insertSpaceAfterCommaDelimiter": true,
"javascript.format.insertSpaceAfterConstructor": false,
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
"javascript.format.insertSpaceAfterSemicolonInForStatements": true,
"javascript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
"javascript.format.insertSpaceBeforeFunctionParenthesis": false,
"javascript.format.placeOpenBraceOnNewLineForFunctions": true,
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": true,
"javascript.implicitProjectConfig.experimentalDecorators": true,
"javascript.validate.enable": true
},
"extensions": {
"recommendations": [
"davidanson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
"eg2.vscode-npm-script"
]
}
}