stylelint-rem-over-px

1.0.1 • Public • Published

stylelint-rem-over-px

A stylelint rule to enforce the usage of rem units over px units. It can also be used to migrate a project that uses px to use rem.

Follow @ahmad_tokyo
width: 8px; // error -> can be autofixed to width: 0.5rem;
height: 1.5rem; // ok
border: 1px solid #000000; // ok
border: 2px solid #000000; // error -> can be autofixed to width: 0.125rem;
@media (max-width: 768px) { display: none }; // ok
background-image: url('https://exapmle.com?size=500pxX500px'); // ok

Installation

npm install stylelint-rem-over-px --save-dev

OR

yarn add -D stylelint-rem-over-px --save-dev

Usage

Add it to your stylelint config

// .stylelintrc
{
  "plugins": [
    "stylelint-rem-over-px"
  ],
  "rules": {
    // Declare the rule
    "rem-over-px/rem-over-px": true,
    // Declaring the rule with default values is equivalent to:
    // "rem-over-px/rem-over-px": [true, { "ignore": "1px", "ignoreFunctions": ["url"] , "ignoreAtRules": ["media"], fontSize: 16 }],
  }
}

Options

ignore: Item[]

ignore value check.

Valid value of Item: propertyName | '1px' | '${propertyName} 1px'

Default: ["1px"]

ignoreFunctions: string[]

ignore check for functions.

Default: ["url"]

ignoreAtRules: string[]

ignore check for @ rules.

Default: ["media"]

fontSize: number

Base font size in pixels. Used to fix px values to rem.

Default: 16

AutoFixing

This plugin supports auto-fixing. Simply run stylelint with the --fix option. The plugin will then replace all px occurrences with rem.

Package Sidebar

Install

npm i stylelint-rem-over-px

Weekly Downloads

3,903

Version

1.0.1

License

MIT

Unpacked Size

9.76 kB

Total Files

4

Last publish

Collaborators

  • a-tokyo