在导入语句中的大括号之间我需要应用哪个规则?
即
代替:
import {IPostService} from './api/IPostService';
我想要:
import { IPostService } from './api/IPostService';
答案 0 :(得分:11)
我认为这可能是您想要的:
"whitespace": [true, "check-module"]
答案 1 :(得分:1)
“空白”:[true,“ check-module”]->此规则仅对
这样的导入抛出错误import {IPostService} from './api/IPostService';
这些情况有规则吗?
来自 从'./api/IPostService'导入{IPostService,IPostalCode};
import { IPostService, IPostalCode } from './api/IPostService';
空格不应介于IPostService和逗号之间