max-len 中的范围值

Range values in max-len

是否可以为 max-len 定义多个值?

我想将 80 个字符作为警告,将 100 个字符作为错误。

类似于下面的代码(不起作用):

"max-len": [1, 80, 4, {"ignoreComments": true}],
"max-len": [2, 100, 4, {"ignoreComments": true}]

该功能不可用。 通常在 Eslint 中,规则的选项永远不会确定规则的严重性(错误或警告)。