@jgarber/stylelint-config-scss

3.0.0 • Public • Published

@jgarber/stylelint-config-scss

Shareable Stylelint configuration for SCSS syntax Sass files.

npm Downloads Build

[!NOTE] See @jgarber/stylelint-config for a shareable Stylelint configuration suitable for CSS files.

Installation

npm install --save-dev @jgarber/stylelint-config-scss

Usage

Stylelint supports a variety of configuration file formats.

YAML

In a file named .stylelintrc or .stylelintrc.yml:

---
extends: "@jgarber/stylelint-config-scss"
---

JSON

In a file named .stylelintrc or .stylelintrc.json:

{
  "extends": "@jgarber/stylelint-config-scss"
}

JavaScript

In a JavaScript file using ECMAScript module (ESM) syntax:

// stylelint.config.mjs
export { default } from "@jgarber/stylelint-config.scss";

In a JavaScript file using CommonJS module syntax:

// stylelint.config.cjs
module.exports = {
  extends: "@jgarber/stylelint-config-scss"
};

License

@jgarber/stylelint-config-scss is freely available under the MIT License.

Package Sidebar

Install

npm i @jgarber/stylelint-config-scss

Weekly Downloads

5

Version

3.0.0

License

MIT

Unpacked Size

9.68 kB

Total Files

4

Last publish

Collaborators

  • jgarber