1.0.1 • Published 7 years ago

gearbox-stylelint v1.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

Gearbox - StyleLint

These rules dictate the SCSS / CSS linting standards endorsed by Gearbox Design.

Installation

  1. Install Node dependencies

    npm install

Usage

  1. Ensure an initial .stylelintrc.js exists in the target directory with appropriate configuration options:

    Example '.stylelintrc.js'

    module.exports = {
    	'extends': [
    		'gearbox-stylelint'
    	].map(require.resolve),
    	// Local override rules...
    	'rules': {
    		'no-unsupported-browser-features': [true, { // Recommended specific project browser features are noted here.
    			'browsers': 'last 2 versions',
    			'severity': 'warning'
    		}
    	}
    };
  2. Run stylelint standalone (provided stylelint is installed globally) with:

    stylelint <DIRECTORY>

Or via other workflow tooling designed to interface with the stylelint API.

Links