TSLint,在导入语句中强制括号之间的间距

时间:2018-07-14 23:00:43

标签: javascript typescript tslint

在导入语句中的大括号之间我需要应用哪个规则?

代替:

import {IPostService} from './api/IPostService';

我想要:

import { IPostService } from './api/IPostService';

2 个答案:

答案 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和逗号之间