@ethikz/stylelint-config

1.0.2 • Public • Published

stylelint-config npm version

NPM

This package provides a base .stylelintrc as an extensible shared config.

stylelint-config

Our default export contains all of our ESLint rules, including ECMAScript 6+. It requires stylelint.

If you use yarn, run npm info "@ethikz/stylelint-config@latest" peerDependencies to list the peer dependencies and versions, then run yarn add --dev <dependency>@<version> for each listed peer dependency. See below for npm instructions.

  1. Install the correct versions of each package, which are listed by the command:
npm info "@ethikz/stylelint-config@latest" peerDependencies

If using npm 5+, use this shortcut

npx install-peerdeps --dev @ethikz/stylelint-config

If using npm < 5, Linux/OSX users can run

(
  export PKG='@ethikz/stylelint-config';
  npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm install --save-dev "$PKG@latest"
)

Which produces and runs a command like:

  npm install --save-dev @ethikz/stylelint-config stylelint@^#.#.#

If using npm < 5, Windows users can either install all the peer dependencies manually, or use the install-peerdeps cli tool.

npm install -g install-peerdeps
install-peerdeps --dev stylelint-config

The cli will produce and run a command like:

npm install --save-dev @ethikz/stylelint-config stylelint@^#.#.#
  1. Add "extends": "@ethikz/stylelint-config" to your .stylelintrc.

Improving this config

Consider adding test cases if you're making complicated rules changes, like anything involving regexes. Perhaps in a distant future, we could use literate programming to structure our README as test cases for our .stylelintrc?

You can run tests with npm test.

You can make sure this module lints with itself using npm run lint.

Package Sidebar

Install

npm i @ethikz/stylelint-config

Weekly Downloads

3

Version

1.0.2

License

MIT

Unpacked Size

15.1 kB

Total Files

5

Last publish

Collaborators

  • ethikz