amaze-stylelint
v0.1.3
Published
Amaze stylelint default configuration
Downloads
2
Readme
Amaze - StyleLint
These rules dictate the SCSS / CSS linting standards endorsed by Amaze Ltd.
Installation
Install Node dependencies
npm install
Usage
Ensure an initial .stylelintrc.js exists in the target directory with appropriate configuration options:
Example '.stylelintrc.js'
module.exports = { 'extends': [ 'amaze-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' } } };
Run stylelint standalone (provided stylelint is installed globally) with:
stylelint <DIRECTORY>
Or via other workflow tooling designed to interface with the stylelint API.
Links
- StyleLint Documentation
- Amaze StyleLint Styleguide (Confluence internal link)