在导入语句中的大括号之间,我需要应用哪个规则?
IE
代替 :
import {IPostService} from './api/IPostService';
我想:
import { IPostService } from './api/IPostService';
最佳答案
我认为这可能是您要寻找的:
"whitespace": [true, "check-module"]
检查模块-检查导入和导出语句中的空格。
关于javascript - TSLint,在导入语句中强制括号之间的间距,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51344028/