npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

eslint-plugin-html-tailwind

v1.2.1

Published

coming soon

Readme

eslint-plugin-html-tailwind

An ESLint plugin for tailwindcss in HTML.

🚀 Installation

npm install --save-dev eslint-plugin-html-tailwind @html-eslint/parser

📦 Usage

In your ESLint config:


// eslint.config.js
import htmlParser from '@html-eslint/parser';
import tailwind from 'eslint-plugin-html-tailwind';

export default [
  {
    files: ['**/*.html'],
    languageOptions: {
      parser: htmlParser,
    },
    plugins: {
      'html-tailwind': tailwind,
    },
    rules: {
      'html-tailwind/no-contradicting-classnames': 'error',
      'html-tailwind/no-style-attribute': 'error',
      'html-tailwind/classname-order': 'warn',
    },
  },
];

Rules

Alpine.js Compatibility

This plugin works with vanilla HTML and safely integrates with Alpine.js directives and code. It has a special handling for dynamic binding and attribues specific to Alpine.js.

Motivation and Vision

HTML-driven and lightweight component libraries like Pines, go-based templUI are becoming more common. These setups often pair well with Tailwind CSS, offering a simple and expressive way to build UI.

At the same time, tools like @html-eslint/parser have made it easier to lint and analyze raw HTML, including things like accessibility and SEO. That’s been a great step forward.

But when working with Tailwind and Alpine in .html files, the tooling support starts to fall short - existing Tailwind lint plugins are designed for JavaScript or JSX, and don’t work well with Alpine-specific syntax or the HTML parser.

This plugin is an attempt to help fill that gap.

It aims to bring some useful static checks — like catching obvious class conflicts or enforcing consistent class order — to HTML and Alpine.js projects using Tailwind. It’s not trying to cover everything, just to be a helpful tool for folks who prefer writing components this way.

Static Analysis for Tailwind + Alpine.js

There is a separate project, eslint-plugin-alpinejs, that aims to provide linting rules specifically for Alpine.js. It’s still in the very early stages, and currently under active development — but if you’re using Alpine, we’d love for you to try it out and share feedback as an early adopter.

With that the recommended setup for static check for Tailwind+Alpinejs web looks like below:

//eslint.config.js
const htmlPlugin = require("@html-eslint/eslint-plugin");
const eslintHTMLParser =require( "@html-eslint/parser");
const tailwind = require("eslint-plugin-html-tailwind");
const alpinje = require("eslint-plugin-alpinejs");

module.exports = [
{
    "files": [ "**/*.html" ],
    "languageOptions": {
      parser: eslintHTMLParser,
    },
    "plugins": {
      "@html-eslint": htmlPlugin,
      "html-tailwind": tailwind
    },
    "rules": {
      ...htmlPlugin.configs.recommended.rules,
      ...tailwind.configs.recommended.rules,
      ...alpinejs.configs.recommended.rules, 
    }
  },
]

installation:


npm install --save-dev \
  eslint \
  @html-eslint/eslint-plugin \
  @html-eslint/parser \
  eslint-plugin-html-tailwind \
  eslint-plugin-alpinejs

Made with ❤️ for teams using Tailwind + Alpine.js