我有tslint
条规则,
{
"rules": {
"max-line-length": [true, {"limit": 120, "ignore-pattern": "^import [^,]+ from"}],
}
}
对导入效果很好。
现在,对于长测试说明,我想忽略模式:
description('My awesome very long desc...',() => {
it('My other very long desc...', () => {
})
})
答案 0 :(得分:0)
A,在TSLint中无法执行此操作。现在有open issue on GitHub个接受拉取请求。
话虽如此,TSLint的维护者建议使用Prettier而不是TSLint来格式化此类问题。