nderscore / prettier-plugin-nativewind

prettier-plugin-tailwindcss fork with support for NativeWind & more
MIT License
11 stars 0 forks source link

Deprecation notice

⚠️ This package is no longer actively maintained ⚠️

prettier-plugin-tailwindcss now supports sorting Tailwind classes in custom locations, making this fork obsolete.



prettier-plugin-nativewind

A fork of prettier-plugin-tailwindcss with support for NativeWind and other use custom use cases.

npm install -D prettier-plugin-nativewind
# or
pnpm add -D prettier-plugin-nativewind
# or
yarn add -D prettier-plugin-nativewind

Fork features

Support for automatically sorting tailwind classes found in strings inside of:

Usage

Please refer to the original package documentation for basic usage instructions.

Customizing props

This fork adds two additional prettier configuration options, which allow you to customize which props and function calls to search for tailwind classes in.

Customize props:

Sort custom props which get passed as classnames to child elements:

// prettier.config.js
module.exports = {
    tailwindCustomProps: ['className', 'containerClassName'] 
};

Customize functions:

Sort inside calls to cva() instead of styled():

// prettier.config.js
module.exports = {
    tailwindCustomFunctions: ['cva'] 
};

Tagged template literals:

// prettier.config.js
module.exports = {
  // Sort template strings found in tagged template literal calls named tw``
  tailwindCustomTaggedTemplates: ['tw']
};

Regular expressions:

You can also use regular expressions by starting a string with ^.

Sort any prop which ends in ClassName:

// prettier.config.js
module.exports = {
    tailwindCustomProps: ['className', '^[a-z]+ClassName$'] 
};

Changelog

v0.2.3

v0.2.2

v0.2.1

v0.2.0

v0.1.1

v0.1.0