CSS linter for immutable selectors.
npm install immutable-css-cli
 
CLI app for immutable-css.
``bash`
npm i -g immutable-css-cli
`sh
immutable-css -h
CSS linter for immutable selectors.
Usage
$ immutable-css [
Options
-j, --json Return json to std out
-s, --strict Lint mutations in the same file
Example
$ immutable-css vendor.css app.css
$ immutable-css src/css/*/.css
$ immutable-css app.css --strict
$ immutable-css src/css/*/.css --json > mutations.json
`
`sh
immutable-css test/fixtures/app.css test/fixtures/vendor.css
.awesome was mutated 2 times
[line 5, col 1]: /Users/johnotander/code/lab/immutable-css-cli/test/fixtures/app.css
[line 5, col 1]: /Users/johnotander/code/lab/immutable-css-cli/test/fixtures/vendor.css
.foo was mutated 2 times
[line 17, col 1]: /Users/johnotander/code/lab/immutable-css-cli/test/fixtures/app.css
[line 1, col 1]: /Users/johnotander/code/lab/immutable-css-cli/test/fixtures/vendor.css
`
When mutations are present, immutable-css exits with an error code of 1.
`sh`
npm t && immutable-css dist/vendor.css dist/app.css && npm run deploy
MIT
1. Fork it
2. Create your feature branch (git checkout -b my-new-feature)git commit -am 'Add some feature'
3. Commit your changes ()git push origin my-new-feature`)
4. Push to the branch (
5. Create new Pull Request
Crafted with <3 by John Otander (@4lpine).
*
> This package was initially generated with yeoman and the p generator.