Socket
Socket
Sign inDemoInstall

@uncinc/stylelint-config

Package Overview
Dependencies
176
Maintainers
6
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @uncinc/stylelint-config

Sharable stylelint config for uncinc projects


Version published
Weekly downloads
20
decreased by-45.95%
Maintainers
6
Created
Weekly downloads
 

Readme

Source

Stylelint config

Make the things that make our products look pretty, look pretty!

Additional explanation for certain rules

declaration-no-important

Using !important is very bad practise. Please do not do it.

If you run stylelint in your project, and you are presented with an enormous amount of errors because of !importants, please do not add a eslint-disable-next-line or disable the rule for entire files.

Instead, overwrite the declaration-no-important rule in your .stylelintrc in the project, and set the severity to warning.

order/order

We have extended stylelint-config-clean-order which is a config for stylelint-order. This package does what you expect it to do.

In our own config we've overwritten the sorting of just the selectors (blocks). Since regular expressions are a bit hard to read sometimes, here's the sorting as we've configured it:

.parentClass {
  @media #{$normal} {
  }

  &:hover {
  }

  &__foo {
  }

  &--bar {
  }

  &.active {
  }

  div {
  }
  
  .childClass {
  }
}

FAQs

Last updated on 15 Mar 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc