CSS Lint で Stylus と Grunt を使用していますが、次のルールでエラーが発生します。
.example
grid-template-columns repeat(auto-fill, minmax(50%, 1fr))
私が得るエラーは次のとおりです。
>> ERROR: Expected RBRACE at line 9, col 147897. This rule looks for recoverable syntax errors. (errors) Browsers: All
次のように ( docsで説明されているように) 行の例外を追加しても、エラーは解消されません。
.example
/* csslint ignore:start */
grid-template-columns repeat(auto-fill, minmax(50%, 1fr))
/* csslint ignore:end */
.csslintrc
違反しているルールを特定できないため、インラインまたはファイル内のルールを無視する方法がわかりません。何か案は?