fix(package): fix format configuration, fix #32
This commit is contained in:
parent
d4d3c933e8
commit
69a9f1b2f8
2 changed files with 20 additions and 0 deletions
|
@ -91,6 +91,8 @@ module will be used.
|
|||
- `typescript.format.insertSpaceAfterKeywordsInControlFlowStatements` default: `true`
|
||||
- `typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions` default: `true`
|
||||
- `typescript.format.insertSpaceBeforeFunctionParenthesis` default: `false`
|
||||
- `typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets` default: `false`
|
||||
- `typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces` default: `false`
|
||||
- `typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis` default: `false`
|
||||
- `typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces` default: `false`
|
||||
- `typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces` default: `false`
|
||||
|
@ -117,6 +119,8 @@ module will be used.
|
|||
- `javascript.format.insertSpaceAfterKeywordsInControlFlowStatements` default: `true`
|
||||
- `javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions` default: `true`
|
||||
- `javascript.format.insertSpaceBeforeFunctionParenthesis` default: `false`
|
||||
- `javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets` default: `false`
|
||||
- `javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces` default: `false`
|
||||
- `javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis` default: `false`
|
||||
- `javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces` default: `false`
|
||||
- `javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces` default: `false`
|
||||
|
|
16
package.json
16
package.json
|
@ -288,6 +288,14 @@
|
|||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
|
@ -405,6 +413,14 @@
|
|||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
|
|
Loading…
Reference in a new issue