Can I stop stylelint extension from validating JavaScript file?

前端 未结 3 2008
太阳男子
太阳男子 2020-12-20 17:47

Good day,

In above picture, stylelint prompt a CSS error in a JS file. Is there a way to stop stylelint from validating javascript file, I coundn\'t find su

3条回答
  •  鱼传尺愫
    2020-12-20 18:10

    The linter can be configured to ignore specific files using the ignoreFiles property of the stylelint configuration object.

    You can try ignoring JavaScript files with:

    {
      "ignoreFiles": ["**/*.js"],
      "rules": { .. }
    }
    

    I believe the stylelint Visual Studio Code extension will respect this property.

提交回复
热议问题