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 🙏

© 2024 – Pkg Stats / Ryan Hefner

ember-template-lint-plugin-tailwindcss

v5.1.0

Published

A tailwindcss plugin for ember-template-lint

Downloads

2,349

Readme

ember-template-lint-plugin-tailwindcss 🌬

npm version license downloads Dependabot Volta Managed ts code style: prettier

A Tailwind CSS 🌬 plugin for ember-template-lint 👨🏻.

Example of class-order rule

Install

yarn add -D ember-template-lint-plugin-tailwindcss
// .template-lintrc.js
module.exports = {
  plugins: ['ember-template-lint-plugin-tailwindcss'],
};

Recommended configuration

A recommended configuration is available. To use it, merge the following object to your .template-lintrc.js file:

// .template-lintrc.js
module.exports = {
  plugins: ['ember-template-lint-plugin-tailwindcss'],
  extends: [
    'recommended', // this comes from ember-template-lint
    'ember-template-lint-plugin-tailwindcss:recommended'
  ]
};

The ember-template-lint-plugin-tailwindcss:recommended set will apply these rules.

Configuration

You can use all the standard ember-template-lint configuration options. For example project wide:

// .template-lintrc.js
module.exports = {
  plugins: ['ember-template-lint-plugin-tailwindcss'],
  extends: ['recommended', 'ember-template-lint-plugin-tailwindcss:recommended'],
  rules: {
    'class-wrap': [
      'error',
      {
        classesPerLine: 5 // this overrides default configuration
      }
    ], 
  },
};

Configuration options

class-wrap

  • boolean - true to enable / false (default) to disable
  • object -- An object with the following keys:
    • classesPerLine -- integer|null: Put a line-wrap in the class attribute after N classes

Note: This rule tends to fight with ember-template-lint-plugin-prettier, so if you are using prettier plugin, it's recommended to have class-wrap disabled.

class-order

  • boolean - true to enable / false to disable
  • object -- object: of marchers, sorters and groups:
    • matchers -- object:
      • key: name of the matcher will be used in groups.[].matchBy
      • value: function that returns true if given class belongs to given group; false otherwise
    • sorters -- object:
      • key: name of the sorter will be used in groups.[].sortBy
      • value: function that takes two strings a and b as input and returns number greater than zero if a > b and less than zero if a < b
    • groups -- array of objects:
      • matchBy: name of respective matcher
      • sortBy: name of respective sorter
      • order: determines sorting of all the groups; lower number means group will be applied earlier
    • linebreakBetweenGroups -- false | object
      • false: do not add linebreak between each group
      • object: add a forced linebreak between each group
        • indent: number of how many spaces from class attribute start we should indent
        • onlyWithHint -- false | string:
          • false: this option is always enabled
          • string: enable this option only when class attribute starts with this string
    • disableForMustaches -- false | true:
      • true: won't attempt to insert any linebreaks if class attribute contains any mustache statement
      • false: even class attributes containing mustache statements will be line broken if other settings says so
    • warnForConcat -- false | true:
      • true: will mark concatenated dynamic class attributes as problematic
      • false: won't mark concatenated dynamic class attributes as problematic

class-order rule will look into the groups array and pick each group one by one. It will go through all the classes and use matchBy matcher on them keeping only those that return truthy value (rest will be carried to the next group). Then the sortBy function will be used to rearrange the order of those classes. In the end the groups of sorted classes are concatenated according to the order parameter ascending.

This means that last entry in groups should always have matchBy: "all", otherwise this plugin will throw away classes that did not match any groups.

If you omit matchBy: "all" from your groups you can also use this plugin to make sure that only classes matched by other matchers in your groups can be used. Classes that don't match any groups will be discarded.

Defaults
{
  warnForConcat: false // // Note: This is the default to preserve backwards compatibility for `2.x` version; Will be flipped to `true` in `5.x`
  disableForMustaches: true, // Note: This is the default to preserve backwards compatibility for `2.x` version; Will be flipped to `false` in `5.x`
  linebreakBetweenGroups: {
    onlyWithHint: `\n`,
    indent: 2,
  }
}

This will allow following:

<div class="gap-4 grid grid-cols-2 lg:grid-cols-5 md:grid-cols-3">
  foo
</div>

<div
  class="                           <-- has to start with `\n` for that options to take place
    gap-4 grid grid-cols-2          <-- group-1
    lg:grid-cols-5 md:grid-cols-3   <-- group-2
  "
>
  bar
</div>
matchers
  • tailwindClass: Matches if given class comes from tailwind (excluding variants)
  • tailwindVariant: Matches if given class is tailwind variant
  • all: Matches anything
sorters
  • alphabet: Sorts by alphabet descending
  • classList: Sorts by predefined list of classes that is trying to mimic groupping by logical blocks
groups
groups: [
  {
    matchBy: "tailwindClass",
    sortBy: "alphabet",
    order: 2,
  },
  {
    matchBy: "tailwindVariant",
    sortBy: "alphabet",
    order: 3,
  },
  {
    matchBy: "all",
    sortBy: "alphabet",
    order: 1,
  },
],

Credits