All Projects → kristerkari → Stylelint Config Recommended Scss

kristerkari / Stylelint Config Recommended Scss

Licence: mit
The recommended shareable SCSS config for stylelint

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Stylelint Config Recommended Scss

React 2048 Game
🎮 A fancy 2048 game build with react, redux best practices.
Stars: ✭ 401 (+184.4%)
Mutual labels:  stylelint, scss
Vscode Stylelint
A Visual Studio Code extension to lint CSS/SCSS/Less with stylelint
Stars: ✭ 260 (+84.4%)
Mutual labels:  stylelint, scss
Frasco
Quick starter for Jekyll including full setup for Sass, PostCSS, Autoprefixer, stylelint, Webpack, ESLint, imagemin, Browsersync, etc.
Stars: ✭ 123 (-12.77%)
Mutual labels:  stylelint, scss
Stylelint Config Sass Guidelines
⚙ A stylelint config inspired by https://sass-guidelin.es/
Stars: ✭ 349 (+147.52%)
Mutual labels:  stylelint, scss
Stylelint Scss
A collection of SCSS specific linting rules for stylelint
Stars: ✭ 655 (+364.54%)
Mutual labels:  stylelint, scss
Generator Dhboilerplate
Boilerplate made by David Hellmann
Stars: ✭ 54 (-61.7%)
Mutual labels:  stylelint, scss
Nextjs Ts
Opinionated Next JS project boilerplate with TypeScript and Redux
Stars: ✭ 134 (-4.96%)
Mutual labels:  stylelint, scss
Coreui Free Bootstrap Admin Template
CoreUI is free bootstrap admin template
Stars: ✭ 11,038 (+7728.37%)
Mutual labels:  scss
Shards Ui
🎨Shards is a beautiful & modern Bootstrap 4 UI kit packed with extra templates and components.
Stars: ✭ 1,718 (+1118.44%)
Mutual labels:  scss
Rails Stylesheets
Stylesheets starting kit @LeWagon
Stars: ✭ 134 (-4.96%)
Mutual labels:  scss
Protonmail Theme
Protonmail Theme
Stars: ✭ 134 (-4.96%)
Mutual labels:  scss
Webpack Pug Scss Boilerplate
📂 Webpack 4 based boilerplate for building apps
Stars: ✭ 135 (-4.26%)
Mutual labels:  scss
Puppertino
A CSS framework based on Human Guidelines from apple
Stars: ✭ 138 (-2.13%)
Mutual labels:  scss
Sso Wall Of Shame
A list of vendors that treat single sign-on as a luxury feature, not a core security requirement.
Stars: ✭ 135 (-4.26%)
Mutual labels:  scss
Git Wiki Theme
A revolutionary full-featured wiki for github pages and jekyll. You don't need to compile it!
Stars: ✭ 139 (-1.42%)
Mutual labels:  scss
Balm Ui
♦️ A modular and customizable UI library based on Material Design and Vue
Stars: ✭ 133 (-5.67%)
Mutual labels:  scss
React Impression
快速构建企业级应用
Stars: ✭ 140 (-0.71%)
Mutual labels:  scss
Generator Jekyll Starter Kit
🚀 Jekyll Progressive Web App Generator.
Stars: ✭ 139 (-1.42%)
Mutual labels:  scss
Glup
Some of the gulp tutorial -《gulp笔记》
Stars: ✭ 136 (-3.55%)
Mutual labels:  scss
Netbeans Website
Apache NetBeans Website
Stars: ✭ 135 (-4.26%)
Mutual labels:  scss

stylelint-config-recommended-scss

npm version Build Status contributions welcome Downloads per month Greenkeeper badge

The recommended shareable SCSS config for stylelint.

It turns on all the possible errors rules within stylelint.

Use it as is or as a foundation for your own config.

Installation

First, install stylelint-scss and stylelint, if you haven't done so yet via npm:

npm install stylelint stylelint-scss --save-dev

and then you can install the config:

npm install stylelint-config-recommended-scss --save-dev

Usage

If you've installed stylelint-config-recommended-scss locally within your project, just set your stylelint config to:

{
  "extends": "stylelint-config-recommended-scss"
}

If you've globally installed stylelint-config-recommended-scss using the -g flag, then you'll need to use the absolute path to stylelint-config-recommended-scss in your config e.g.

{
  "extends": "/absolute/path/to/stylelint-config-recommended-scss"
}

Extending the config

Simply add a "rules" key to your config, then add your overrides and additions there.

For example, to turn off the block-no-empty rule, and add the unit-whitelist rule:

{
  "extends": "stylelint-config-recommended-scss",
  "rules": {
    "block-no-empty": null,
    "unit-whitelist": ["em", "rem", "s"]
  }
}

Changelog

License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].