Which rule do I need to apply to enforce spaces between curly brackets in the import statements?
i.e
Instead of :
import {IPostService} from './api/IPostService';
I want:
import { IPostService } from './api/IPostService';
Which rule do I need to apply to enforce spaces between curly brackets in the import statements?
i.e
Instead of :
import {IPostService} from './api/IPostService';
I want:
import { IPostService } from './api/IPostService';