Stylelintでファイルを除外する
tl;dr
- 設定ファイルの
ignoreFiles
にGlobで書きまくればいい
状況
- PostCSS + SugarSS
- Webpack (4.8.1)
ignoreFiles
にGlobで書きまくればいい- PostCSS + SugarSS
- Webpack (4.8.1)
なぜか.stylelintignore
が全く反映されなかったので、設定ファイルに除外先を指定することにしました。
以下のように.stylelintrc.yml
などに書けば対象のファイルが除外されます。
---
extends: stylelint-config-sugarss-recommended
plugins:
- stylelint-order
ignoreFiles:
- node_modules/**/*.css
- src/lib/**/*.css
rules:
- order/properties-alphabetical-order: true
Author And Source
この問題について(Stylelintでファイルを除外する), 我々は、より多くの情報をここで見つけました https://qiita.com/simochee/items/e1f9e557ca4b5aa410b9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .