1
1
mirror of https://github.com/primer/css.git synced 2024-09-21 13:51:52 +03:00
css/tools/stylelint-selector-no-utility
2019-01-28 16:40:39 -08:00
..
test create classes.json at prepare time 2018-11-08 09:58:56 -08:00
.eslintrc.json upgrade to es6, add prettier config 2018-11-08 09:41:59 -08:00
classes.json feat(selector-no-utility): add responsive position classes 2019-01-22 15:53:42 -08:00
index.js create classes.json at prepare time 2018-11-08 09:58:56 -08:00
LICENSE update year in licenses and source headers to 2019 2019-01-04 10:38:46 -08:00
match.js create classes.json at prepare time 2018-11-08 09:58:56 -08:00
package.json chore(stylelint): move @primer/css to devDependencies 2019-01-28 16:40:39 -08:00
prepare.js fix: get utility classes via @primer/css/build/utilities (TODO) 2019-01-28 16:40:39 -08:00
prettier.config.js upgrade to es6, add prettier config 2018-11-08 09:41:59 -08:00
README.md refactor: run script/reorg 2019-01-28 16:40:39 -08:00

selector-no-utility

NPM version Build Status

This plugin is specific to primer-utilities. We'll accept pull requests to make it more generic, or feel free to fork and use it for your own classes.

Utilities are single purpose styles that should be treated as immutable CSS. They should not be altered by custom CSS as this can cause unwanted side effects.

    .m-0, #bar .float-left, #hoo { border: 1px solid pink; }
/** ↑          ↑
 * Each of these selectors */

The following patterns are considered warnings:

#bar .float-left { border: 1px solid pink; }
#bar {
  .float-left { border: 1px solid pink; }
}

The following patterns are not considered warnings:

#bar { color: pink; }

Install

This repository is distributed with npm. After installing npm, you can install stylelint-function-url-no-domain with this command.

$ npm install --save-dev stylelint-function-url-no-domain

Usage

In your stylelint config add this.

{
  "plugins": [
    "stylelint-selector-no-utility"
  ],
  "rules": {
    "primer/selector-no-utility": true
  }
}

License

MIT © GitHub