stylelintがtsx(jsx)に効かない問題の現時点での対処法
何が起きてた?
stylelint 13.3.1から、tsxファイルにstylelintが全く反応しない(問題があってもDoneになる)問題があった
条件は .babelrc
などのbabel設定ファイルでpluginsの配列要素数が2以上のときだった
issueとしては以下
直接的要因と思われる場所
workaround
"parserOpts": {
"plugins": ["jsx", "typescript"]
},
"parserOpts": {
"plugins": ["jsx", "typescript"]
},
を追加すると、stylelint 13.12.0でも動作するようになった
issueにも書いた
https://github.com/stylelint/stylelint/issues/4732#issuecomment-820027303
Author And Source
この問題について(stylelintがtsx(jsx)に効かない問題の現時点での対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/kondei/items/3dd55c5d3083320cffaa著者帰属:元の著者の情報は、元の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 .