stylelint-config-narwin
DockYard standard configuration rules for CSS linting using stylelint.
To see the rules that this config uses, please read the config itself.
Installation
npm install stylelint-config-standard --save-devnpm install stylelint-config-narwin --save-dev
Ember-specific Installation
Ember installation utilizes ember-cli-stylelint to provide integrated tests and reporting of stylelint errors. This must be version 0.15.0 or later to support Ember versions 2.13 and up.
npm install stylelint-config-narwin --save-devember install ember-cli-stylelint
The ember-cli-stylelint addon will create a 'stylelint' config file at /.stylelintrc
.
Usage
If you've installed stylelint-config-narwin
locally within your project, just set your stylelint
config to:
If you've globally installed stylelint-config-narwin
using the -g
flag, then you'll need to use the absolute path to stylelint-config-narwin
in your config e.g.
If you are setting up a new installation after ember-cli-stylelint
you will update the extends
property from 'stylelint-config-standard' to 'stylelint-config-narwin'. The stylelint-config-narwin
configuration already extends the stylelint-config-standard
configuration that is installed along with ember-cli-stylelint
. You may also add this config to your list of extensions per the documentation.
Additional Ember configuration
Note
Configuration of stylelint is per ember-cli-stylelint configuration. For example, to update the linter for CSS instead of the default SCSS add the following to your ember-cli-build.js
:
...module { var app = defaults // Add options here stylelint: linterConfig: syntax: 'css' ;...
Extending the config
Simply add a "rules"
key to your config, then add your overrides and additions there.
For example, to change the indentation
to tabs, turn off the number-leading-zero
rule, change the property-no-unknown
rule to use its ignoreAtRules
option and add the unit-whitelist
rule:
Using the config with SugarSS syntax
The config is broadly compatible with SugarSS syntax. You will need to turn off the rules that check braces and semicolons, as so:
Changelog
Legal
DockYard, Inc. © 2017