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

stylelint-config-airtame

v1.1.1

Published

Airtame's Stylelint configuration

Downloads

8

Readme

Airtame stylelint configuration

Build Status npm version David Greenkeeper badge

Usage

Install as a development dependency to your project

$ yarn add --dev stylelint-config-airtame

or

$ npm install --save-dev stylelint-config-airtame

Then, on your stylelint configuration file

{
  "extends": "stylelint-config-airtame"
}

Rules

block-closing-brace-newline-after

Declare all blocks in a new line

// bad
a { color: pink; }b { color: red; }

a { color: pink;
} b { color: red; }

// good
a { color: pink; }
b { color: red; }

block-closing-brace-newline-before

All blocks must be closed in a new line

// bad
a { color: pink;}

// good
a {
  color: pink;
}

block-no-empty

No blocks should be declared and be left empty

// bad
a { }

block-opening-brace-newline-after

Rule declarations should be in a new line after the opening curly bracket

// bad
a { color: red; }

// good
a {
  color: red;
}

color-hex-length

When using hex colors, the full hex code should be used to define it

// bad
body {
  background: #000;
}

// good
body {
  background: #000000;
}

color-named

Named colors should never be used.

// bad
body {
  background: black;
}

// good
body {
  background: #000000;
  color: rgb(255, 255, 255);
}

p {
  background: rgba(255, 0, 0, .5);
  color: $grey; // assuming $grey was declared previously
}

color-no-invalid-hex

Ensures all hex values used are valid

// bad
body {
  background: #y3;
}

declaration-block-no-shorthand-property-overrides

Do not override a rule with a higher scoped rule. This prevents undesired results

// bad
a {
  padding-left: 10px;
  padding: 20px; // this overrides the previous rule
}

// good
a {
  padding: 10px; // first global padding
  padding-left: 20px; // then specific padding
}

declaration-block-semicolon-newline-after

Each rule should appear in a new line. Also, make sure no trailing spaces are left after a semicolon

// bad
a {
  padding: 10px; padding-left: 20px;
}

p {
  padding: 15px;•••
}

// good
a {
  padding: 10px;
  padding-left: 20px;
}

p {
  padding: 15px;
}

declaration-block-trailing-semicolon

All rules should end with a semicolon.

// bad
a {
  padding: 10px
}

// good
a {
  padding: 10px;
}

declaration-colon-space-before

Never add a space before a rule declaration's colon

// bad
body {
  background : red;
}

// good
body {
  background: rgb(255, 0, 0);
}

declaration-colon-space-after

Always leave a space after a declaration's colon

// bad
body {
  background:red;
}

// good
body {
  background: rgb(255, 0, 0);
}

declaration-no-important

Never use the !important tag. This usually means you're not targeting your CSS properly

// VERY BAD
a {
  background: #000000 !important;
}

// good - cascade your elements properly
.description p a {
  background: #000000;
}

indentation

Use 2 spaces for indentation

// bad
a {
    background: blue;
    color: white;

    &:hover {
        background: white;
        color: blue;
    }
}

// good
a {
  background: #FF00FF;
  color: #FFFFFF;

  &:hover {
    background: #FFFFFF;
    color: #FF00FF;
  }
}

max-nesting-depth

When using SCSS, do not nest more than 3 times in depth.

// bad
body {
  // some more rules
  div {
    // some more rules
    p {
      // some more rules
      a {
        color: red;
      }
    }
  }
}

// good - provide good classes to easily cascade your rules
body {
  // some more rules
  .my-class {
    // some more rules
    p {
      // some more rules
    }

    a {
      color: red;
    }
  }
}

max-empty-lines

Do not leave more than 1 empty line between your rules and declarations

// bad

a {
  // some rules here
}



b {
  // some more rules here
}

number-no-trailing-zeros

Do not add trailing zeros for decimal values either

// bad
div {
  opacity: .5000;
  transition: opacity 0.50s;
  top: 1.0100px;
}

// good
div {
  opacity: .5;
  transition: opacity .5s;
  top: 1.01px;
}

rule-empty-line-before

Always add an empty line before new rules

// bad
a {} b {}

// bad
a {}
b {}

// good
a {}

b {}

scss/at-mixin-argumentless-call-parentheses

Always use parenthesis when using a mixin, even if it doesn't take any parameters

Why? Consistency and easier code reading;

// bad
div {
  @include my-mixin-name;
}

// good
div {
  @include my-mixin-name();
}

selector-combinator-space-after

When using combinators to add specificity to your selectors, add a space after each of them.

// bad
a>b+c~de {
  color: #000000;
}

// good
a > b + c ~ d e {
  color: #000000;
}

selector-combinator-space-before

Similarly, always add a space before the combinators

// bad
a>b+c~de {
  color: #000000;
}

// good
a > b + c ~ d e {
  color: #000000;
}

selector-list-comma-newline-after

When applying the same rule to multiple selectors, write each selector in a separate line for readability purposes.

// bad
.my-first-class, .my-second-class {
  // your rules here
}

// good
.my-first-selector,
.my-second-selector {
  // your rules here
}

selector-no-id

Never use ids to style your elements. Use classes instead and leave ids for markup behavior

// bad
#my-selector {
  // styles
}

// good
.my-semantinc-class-name {
  // styles
}

selector-type-case

Use lower case and dashes for your class name selector

// bad
.MyClassName {

}

// good
.my-class-name {

}

string-quotes

When wrapping a value in quotes, use single quotes

// bad
div:before {
  content: "some string";
}

// good
div:before {
  content: 'some string';
}

value-list-comma-space-after

When writing a list, leave a space after each comma

// bad
a {
  background-size: 0,0;
}

// good
a {
  background-size: 0, 0;
}