Remove stylelint-processor-styled-components in stylelint section
See original GitHub issueAccording to those two GitHub issues stylelint-processor-styled-components
is deprecated as it provokes bugs and stylelint now supports CSS-in-JS out of the box.
I think we should update the documentation section to avoid newcomers to install it.
I could do the PR if you want to
Issue Analytics
- State:
- Created 3 years ago
- Reactions:18
- Comments:14 (2 by maintainers)
Top Results From Across the Web
Configuration | Stylelint
You can set the reportDisables secondary option to report any stylelint-disable comments for this rule, effectively disallowing authors to opt out of it....
Read more >Stylelint | WebStorm Documentation - JetBrains
Stylelint wakes up automatically when you edit a CSS file and highlights the detected problems, see Lint your code below. Before you start....
Read more >stylelint-config-godaddy - npm
Add a script to the scripts area in your package.json . Linting scss files in the root of your project: "test:styles": " ...
Read more >FAQ - stylelint
You can also disable a rule for specific sections of your CSS. Refer to the rules section of the configuration guide for more...
Read more >Stylelint: The Style Sheet Linter We've Always Wanted
Configuration Files #. Configuring is the most difficult part about using a linter — and the most time-consuming. But there are shortcuts and ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi, everyone. After some research, I found a configuration that allows me to use
stylint
withstyled-components
with the auto-fix feature.I’m using the
postcss-jsx
library as my customSyntax analyzer over thestylelint-processor-styled-components
andstylelint-config-styled-components
.I just needed to follow the steps below:
Enjoy 😉
That configuration works for me:
.stylelintrc.json
package.json
Hope it helps!