我有一个气概。我upgreade我的packgages.json,然后我的tslint标记每个软错误,以强调红色。当我说软错误时,我的意思是太长的行或许多空格或标签。这些错误的标志是绿色下划线更新。任何人都可以帮我配置tsliny吗?
答案 0 :(得分:1)
您必须更改您的ts lint配置。打开false
文件,将以下属性更改为"max-line-length": [
false,
140
],
或增加其长度:
{{1}}
答案 1 :(得分:1)
在.eslintrc文件中,您将拥有json对象。搜索关键规则。现在,您将为lint指定规则来评估您的代码。每条规则的编号为0或1或2,其中:
"off" or 0 - turn the rule off
"warn" or 1 - turn the rule on as a warning (doesn’t affect exit code)
"error" or 2 - turn the rule on as an error (exit code is 1 when triggered)
您可以根据自己的方便更改数量,以修改规则。