🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

eslint-plugin-readable-tailwind

Package Overview
Dependencies
Maintainers
1
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-readable-tailwind

auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.

1.5.0-vue.1
Source
npm
Version published
Weekly downloads
19K
12.69%
Maintainers
1
Weekly downloads
 
Created
Source
eslint-plugin-readable-tailwind logo

GitHub license npm version GitHub issues npm weekly downloads GitHub repo stars GitHub workflow status



ESLint plugin to automatically break up long tailwind class strings into multiple lines based on a specified print width or class count. This improves readability and eliminates horizontal scrolling.
It also sorts the classes logically, removes unnecessary whitespaces and groups the classes by their modifiers. It works in jsx, svelte, vue, and html files and is designed to work well with and without prettier.



eslint-plugin-readable-tailwind example


eslint-plugin-readable-tailwind logo

This project is financed by the community.
If you or your company benefit from this project, please consider becoming a sponsor.
Your contribution will help me maintain and develop the project.



Installation

npm i -D eslint-plugin-readable-tailwind

Quick start

  • Check out the Parsers section below to see how to configure the plugin for your specific flavor.
  • Read the Rules section to learn about the available rules and how to configure them.
  • Read the Utilities section to see which tailwind utilities are supported out of the box and how to extend the default configuration.
  • Configure your editor to conveniently auto-fix on save.


Parsers

Depending on the flavor you are using, you need to install and configure the corresponding parser:



Rules

NameDescriptionerrorwarningautofix
multilineEnforce consistent line wrapping for tailwind classes.
no-unnecessary-whitespaceDisallow unnecessary whitespace in tailwind classes.
sort-classesEnforce a consistent order for tailwind classes.


Utilities

This plugin works out of the box with most popular tailwind utilities:



In case an utility is not supported or you have built your own, you can change which literals will get linted for each rule. Read the API documentation to learn how to override or extend the default config.



Editor configuration

VSCode

Auto-fix on save

These rules are intended to automatically fix the tailwind classes. If you have installed the VSCode ESLint plugin, you can configure it to automatically fix the classes on save by adding the following options to your .vscode/settings.json:

{
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": "explicit"
  }
}


🩷 Sponsored by the following awesome people and organizations

No awesome people or organizations have sponsored this project yet.

Keywords

eslint

FAQs

Package last updated on 20 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts