stylelint-config-zicht

1.0.2 • Public • Published

stylelint-config-zicht

Shareable stylelint configuration for Zicht projects.

Use this configuration for stylelint when you're writing CSS for a project by Zicht.

To see the rules that this config uses, please read the config itself.

Installing

npm install stylelint-config-zicht --save-dev

Usage

After installing, add a stylelint property to your package.json. Stylelint will automatically find the config in your node_modules directory.

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

Linting with an NPM script

Add a script to your package.json.

"scripts": {
    "lint-css": "./node_modules/.bin/stylelint 'sass/**/*.scss' --verbose"
}

Then run it:

npm run lint-css

Linting in your Webpack build

First, install the stylelint Webpack plugin.

npm install stylelint-webpack-plugin --save-dev

Then, load the plugin in your build configuration.

const StyleLintPlugin = require('stylelint-webpack-plugin');
   
...
   
   plugins: [
        new StyleLintPlugin({
            files: 'sass/**/*.scss',
            quiet: false
        })
   ]

License

Package Sidebar

Install

npm i stylelint-config-zicht

Weekly Downloads

8

Version

1.0.2

License

MIT

Unpacked Size

11.6 kB

Total Files

5

Last publish

Collaborators

  • zichtonline