Disallow space after opening object curly brace and before closing in import statements.
Type: Boolean
Value: true
"disallowSpacesInsideImportedObjectBraces": true
import {foo, bar} from 'foo-bar';
import {foo as f, bar} from 'foo-bar';
import { foo, bar } from 'foo-bar';
import { foo as f, bar } from 'foo-bar';