Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@signal-noise/stylelint-scales

Package Overview
Dependencies
Maintainers
3
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@signal-noise/stylelint-scales

A plugin pack to enforce scales within Stylelint

  • 2.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

stylelint-scales

NPM version Actions Status NPM Downloads All Contributors

A Stylelint plugin pack of rules for enforcing scales.

Installation

npm install @signal-noise/stylelint-scales --save-dev

Usage

Add stylelint-scales to your Stylelint config plugins array, then add the rules you need to the rules list. All rules from stylelint-scales need to be namespaced with scales.

Like so:

{
  "plugins": ["@signal-noise/stylelint-scales"],
  "rules": {
    "scales/alpha-values": [80, 90],
    "scales/border-widths": [{ "scale": [1, 2], "units": ["px"] }],
    "scales/font-families": ["system-ui"],
    "scales/font-sizes": [
      { "scale": [1, 1.5, 2], "units": ["em", "rem"] },
      { "scale": [12, 14, 16], "units": ["px"] }
    ],
    "scales/font-weights": [400, 600],
    "scales/line-heights": [1, 1.5],
    "scales/radii": [{ "scale": [2, 4], "units": ["px"] }],
    "scales/space": [{ "scale": [0.5, 1, 2, 4], "units": ["rem"] }]
  }
}

To enforce this:

p {
  border: 1px solid hsl(var(--accent) / 90%));
  border-radius: 2px;
  font: 400 1rem/1.5 system-ui;
  margin-block: 2rem;
}

This plugin can automatically fix all the numeric scales.

List of rules

  • alpha-values: Specify a scale for alpha values (Autofixable).
  • border-widths: Specify a scale for border widths (Autofixable).
  • font-families: Specify a scale for font families.
  • font-sizes: Specify a scale for font sizes (Autofixable).
  • font-weights: Specify a scale for font weights (Autofixable).
  • letter-spacings: Specify a scale for letter spacings (Autofixable).
  • line-heights: Specify a scale for line heights (Autofixable).
  • radii: Specify a scale for radii (Autofixable).
  • sizes: Specify a scale for sizes (Autofixable).
  • space: Specify a scale for space (Autofixable).
  • word-spacings: Specify a scale for word spacings (Autofixable).
  • z-indices: Specify a scale for z-indices (Autofixable).

Ref: Styled System Keys Reference

You and the designers should define the scales together. You'll want to strike a balance between code consistency and design flexibility.

Why?

This plugin can help you create:

  • a consistent look and feel for your websites
  • efficient collaboration between you and the designers

When designers review websites in the browser, they generally use relative terms. For example, "The space between that heading and that paragraph feels too tight, can we make it bigger?"

You can then pick the next value on the scale and be confident that it'll be consistent with the overall design.

Why not use variables?

While you can achieve something similar with variables, with this plugin you:

  1. Enforce code and design consistency with one mechanism. You probably already use Stylelint for code consistency, for example using the unit-allowed-list to enforce consistent units. By using this plugin, you avoid adding a second mechanism (variables) to ensure design consistency. Additionally, you'll need to enforce the use of variables with linting anyway to avoid relying on developer discipline.
  2. Avoid the cognitive load of abstracted variable names. You can write explicit values, and the plugin will automatically fix it to the closest value on the corresponding scale. The exception to this are colours, which benefit from human-readable names.
  3. Can use the same approach across projects. The plugin is agnostic of the styling technology, whether that's styled-components, SCSS or vanilla CSS.
  4. Remove the need to translate values from design tools into variables. You can copy and paste code from design tools like Figma and Sketch without alteration.

Contributors

Thanks goes to these wonderful people (emoji key):


Richard Hallows

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

Keywords

FAQs

Package last updated on 22 Oct 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc