# stylelint-config-recommended-scss

> The recommended shareable SCSS config for Stylelint

Latest version **17.0.1** (published 2026-04-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install stylelint-config-recommended-scss
pnpm add stylelint-config-recommended-scss
yarn add stylelint-config-recommended-scss
bun add stylelint-config-recommended-scss
```

## Health

**Score 55/100 (C)** — status: active.

Positive: esm support; no vulnerabilities; high maintenance score.

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 17.0.1 |
| Published | 2026-04-08 |
| First published | 2017-07-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM |
| Node | >=20 |
| Dependencies | 3 |
| Unpacked size | 6.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 234 |
| Author | kristerkari |
| Maintainers | kristerkari, jeddy3 |
| Keywords | stylelint, stylelint-config, recommended, scss |

## Links

- npm: https://www.npmjs.com/package/stylelint-config-recommended-scss
- Repository: https://github.com/stylelint-scss/stylelint-config-recommended-scss
- Homepage: https://github.com/stylelint-scss/stylelint-config-recommended-scss#readme
- Issues: https://github.com/stylelint-scss/stylelint-config-recommended-scss/issues
- npm.io page: https://npm.io/package/stylelint-config-recommended-scss

## Dependencies (3)

- [postcss-scss](https://npm.io/package/postcss-scss.md) ^4.0.9
- [stylelint-scss](https://npm.io/package/stylelint-scss.md) ^7.0.0
- [stylelint-config-recommended](https://npm.io/package/stylelint-config-recommended.md) ^18.0.0

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 17.0.1 (latest) — 2026-04-08
- 5.0.0-0 (next) — 2021-10-20
- 17.0.0 — 2026-01-15
- 16.0.2 — 2025-09-28
- 16.0.1 — 2025-09-11
- 16.0.0 — 2025-08-08
- 15.0.1 — 2025-05-18
- 15.0.0 — 2025-05-08
- 14.1.0 — 2024-07-09
- 14.0.0 — 2023-12-11
- 13.1.0 — 2023-11-02
- 13.0.0 — 2023-09-03
- 12.0.0 — 2023-05-22
- 11.0.0 — 2023-04-24
- 10.0.0 — 2023-04-10
- … 18 more at https://npm.io/package/stylelint-config-recommended-scss/versions

## README

# stylelint-config-recommended-scss

[![npm version](https://img.shields.io/npm/v/stylelint-config-recommended-scss?logo=npm&logoColor=fff)](https://www.npmjs.com/package/stylelint-config-recommended-scss)
[![Build Status](https://img.shields.io/github/actions/workflow/status/stylelint-scss/stylelint-config-recommended-scss/test.yml?branch=master&label=tests&logo=github)](https://github.com/stylelint-scss/stylelint-config-recommended-scss/actions/workflows/test.yml?query=workflow%3ATests)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen)](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github)
[![Downloads per month](https://img.shields.io/npm/dm/stylelint-config-recommended-scss)](https://npmcharts.com/compare/stylelint-config-recommended-scss)

> The recommended shareable SCSS config for Stylelint.

This config:

- extends the [`stylelint-config-recommended` shared config](https://github.com/stylelint/stylelint-config-recommended) and configures its rules for SCSS
- bundles the [`stylelint-scss` plugin pack](https://github.com/stylelint-scss/stylelint-scss) and turns on its rules that check for possible errors
- bundles the [`postcss-scss` custom syntax](https://github.com/postcss/postcss-scss) and configures it

This config is extended by the [`stylelint-config-standard-scss` shared config](https://github.com/stylelint-scss/stylelint-config-standard-scss). That config is better suited to most users as it also turns on the stylistic rules in the [`stylelint-scss` plugin pack](https://github.com/stylelint-scss/stylelint-scss).

To see the rules that this config uses, please read the [config itself](/index.js).

## Installation

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

## Usage

Set your `stylelint` config to:

```json
{
  "extends": "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 `scss/at-if-no-null` rule:

```json
{
  "extends": "stylelint-config-recommended-scss",
  "rules": {
    "scss/at-if-no-null": null
  }
}
```

## [Changelog](CHANGELOG.md)

## [License](LICENSE)

---
_Source: https://npm.io/package/stylelint-config-recommended-scss · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
