stylelint

A mighty CSS linter that helps you avoid errors and enforce conventions. (by stylelint)

Stylelint Alternatives

Similar projects and alternatives to stylelint

  1. Tailwind CSS

    1,498 stylelint VS Tailwind CSS

    A utility-first CSS framework for rapid UI development.

  2. Civic Auth

    Auth in Less Than 5 Minutes. Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.

    Civic Auth logo
  3. TypeScript

    1,419 stylelint VS TypeScript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  4. vite

    900 stylelint VS vite

    Next generation frontend tooling. It's fast!

  5. jest

    518 stylelint VS jest

    Delightful JavaScript Testing.

  6. prettier

    481 stylelint VS prettier

    Prettier is an opinionated code formatter.

  7. ESLint

    427 stylelint VS ESLint

    Find and fix problems in your JavaScript code.

  8. webpack

    367 stylelint VS webpack

    A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.

  9. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  10. core

    357 stylelint VS core

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web. (by vuejs)

  11. storybook

    354 stylelint VS storybook

    Storybook is the industry standard workshop for building, documenting, and testing UI components in isolation

  12. redux

    299 stylelint VS redux

    A JS library for predictable global state management

  13. styled-components

    Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅

  14. Sass

    222 stylelint VS Sass

    Sass makes CSS fun!

  15. husky

    148 stylelint VS husky

    Git hooks made easy 🐶 woof!

  16. javascript

    143 stylelint VS javascript

    JavaScript Style Guide

  17. PostCSS

    96 stylelint VS PostCSS

    Transforming styles with JS plugins

  18. lint-staged

    59 stylelint VS lint-staged

    🚫💩 — Run tasks like formatters and linters against staged git files

  19. less.js

    52 stylelint VS less.js

    Less. The dynamic stylesheet language.

  20. stylus

    31 stylelint VS stylus

    Expressive, robust, feature-rich CSS language built for nodejs

  21. csslint

    18 stylelint VS csslint

    Automated linting of Cascading Stylesheets

  22. CodeceptJS

    15 stylelint VS CodeceptJS

    Supercharged End 2 End Testing Framework for NodeJS

  23. InfluxDB

    InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better stylelint alternative or higher similarity.

stylelint discussion

Log in or Post with

stylelint reviews and mentions

Posts with mentions or reviews of stylelint. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-09-12.
  • Rethinking CSS in JS
    32 projects | dev.to | 12 Sep 2024
  • CSS Variable Naming: Best Practices and Approaches
    3 projects | dev.to | 10 Jul 2024
    Stylelint: A modern, flexible linter for CSS that can be configured to check variable consistency. PostCSS: A tool that transforms CSS with plugins, including variable checks. CSS Linter: A specific tool to ensure correct and consistent use of CSS variables. Conclusion 🔗
  • Nomeação de Variáveis CSS: Boas Práticas e Abordagens
    3 projects | dev.to | 10 Jul 2024
  • BEM Modifiers in Pure CSS Nesting
    4 projects | dev.to | 17 Jun 2024
    Once upon a time, when native CSS nesting was just starting to be discussed, I thought, "Nesting? In pure CSS? I will never use that!" But over time, I got used to it, and now I even like it. Will the same happen with native CSS mixins, or, heaven forbid, native CSS loops? I want to say no, but I will not make predictions. At the very least, with experience, I have become acquainted with a wonderful tool like Stylelint and its life-easing rules such as max-nesting-depth and others. Hopefully, it will prevent me from becoming a hater of pure CSS someday.
  • Streamline Your Workflow: A Guide to Normalising Git Commit and Push Processes
    6 projects | dev.to | 5 May 2024
    There are more linting tools that I won't go into deeply, but you can integrate them with lint-staged. For example, you can lint your CSS content with Stylelint, or even lint your README files with markdownlint, etc.
  • Why it is Important to Update Linters and How to Do it Right
    4 projects | dev.to | 8 Feb 2024
    Another common way to extend configs in linters is using the extends key in the configuration file. Let's take StyleLint as an example:
  • How to Improve Development Experience of your React Project
    5 projects | dev.to | 21 Jan 2024
    Stylelint is similar to ESLint, but its focus is on styling rather than JavaScript. It helps you find errors in style files, such as old syntax or empty classes. We will also incorporate stylelint-config-clean-order to sort your style rules and group them consistently across the entire codebase.
  • Speeding up the JavaScript ecosystem – The barrel file debacle
    5 projects | news.ycombinator.com | 9 Oct 2023
    The “cost of loading modules” diagram shows non-linear behaviour (though you should largely ignore the curve visible in the diagram because the x axis is way off linear):

    • 0.15s ÷ 500 = 0.3ms

    • 0.31s ÷ 1000 = 0.31ms

    • 3.12s ÷ 10000 = 0.312ms

    • 16.81s ÷ 25000 = 0.6724ms

    • 48.44s ÷ 50000 = 0.9688ms

    My own observation on a Surface Book six years ago was that in Node.js under Windows, each module had about 1ms of overhead when there was warm file system cache—that is, simply bundling with Rollup saved 1ms per file. If this sort of thing interests you, quite a lot of useful stuff came out of https://github.com/stylelint/stylelint/issues/2454 which I filed because I was unhappy with stylelint taking over a second to import. And that must have been only in the order of one or two thousand modules, when the behaviour is still close enough to linear.

  • Don't sound like a robot: use CSS to Control Text-to-Speech
    1 project | dev.to | 13 Sep 2023
    As the property is still experimental, stylelint does not recognize it yet at the time of writing this, so let's explicitly disable the property-no-unknown rule only where we use it by adding a stylelint-disable comment and re-enable it afterwards.
  • How to upskill my skills?
    3 projects | /r/Frontend | 25 Jun 2023
    Document your build process in a blog, use eslint, stylelint and jsx-a11y lint. Run a lighthouse performance test, follow the optimisation reccomendations.
  • A note from our sponsor - Civic Auth
    www.civic.com | 22 Apr 2025
    Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today. Learn more →

Stats

Basic stylelint repo stats
49
11,223
9.8
2 days ago

Sponsored
Auth in Less Than 5 Minutes
Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.
www.civic.com

Did you know that JavaScript is
the 3rd most popular programming language
based on number of references?