Microsoft/TypeScript
View on GitHubAdd rule typescript.format.insertSpaceAfterOpeningAndBeforeClosingNamedImport
Open
#9,224 opened on Jun 17, 2016
Domain: FormatterHelp WantedSuggestion
Description
From @unional on June 16, 2016 22:12
- VSCode Version: 1.2.1
- OS Version: Windows 2012 R2
Currently object literal will have space added, but not named import:
// before format code
import {Container} from './Container';
let x = {Container};
// after format code
import {Container} from './Container';
let x = { Container };
Copied from original issue: Microsoft/vscode#7795