如果注释以4斜杠开头,我想在tslint中启用没有空格的注释。
规则:https://palantir.github.io/tslint/rules/comment-format/
我已经尝试了
"comment-format": [true, "check-space", { "ignore-pattern": "//" }],
但它没有帮助。
答案 0 :(得分:0)
向tslint.json添加下一条规则:
"comment-format": [false, "check-space"]