Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/johno/immutable-css

A css linter for immutable selectors
https://github.com/johno/immutable-css

Last synced: about 2 months ago
JSON representation

A css linter for immutable selectors

Awesome Lists containing this project

README

        


immutable-css

[![Build Status](https://secure.travis-ci.org/johnotander/immutable-css.png?branch=master)](https://travis-ci.org/johnotander/immutable-css) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard)

Best practices suggest avoiding overriding styles from vendor libraries to prevent unwanted side effects. Base library styles should not be altered – or as Harry Roberts describes, base styles should be treated as [Immutable CSS](http://csswizardry.com/2015/03/immutable-css/).

See the interactive [web app](http://immutablecss.com).

## Installation

```bash
npm install --save immutable-css
```

## Usage

`immutableCss.processFiles(immutableSourceCss, customCss, options)` takes two stylesheet paths, and ensures the custom CSS doesn't override any selectors contained within the immutable source.
This is typically best when comparing vendor CSS ([Bootstrap](http://getbootstrap.com), [Tachyons](http://tachyons.io), [Basscss](http://basscss.com), etc.) to your app's customizations.

```js
var immutableCss = require('immutable-css')

immutableCss.processFiles('css/vendor.css', 'css/app.css')
// => [...]

```

`immutableCss.processGlob(cssGlob, options)` takes a glob that matches CSS files and ensures that no stylesheet overrides selectors contained within another.
This is useful to ensure that CSS partials aren't mixing concerns by mutating selectors contained within another file.

```js
var immutableCss = require('immutable-css')

immutableCss.processGlob('src/css/**/*.css', { verbose: true })
```

### Using with [PostCSS](https://github.com/postcss/postcss)

Immutable CSS detects mutations among files by leveraging PostCSS sourcemaps. It is also best used as a PostCSS plugin in tandem with `postcss-import` and `postcss-reporter`.

```js
var fs = require('fs')
var postcss = require('postcss')
var import = require('postcss-import')
var reporter = require('postcss-reporter')
var immutableCss = require('immutable-css')

var css = fs.readFileSync('styles.css', 'utf8')

var mutations = postcss([import(), immutableCss(), reporter()])
.process(css, { from: 'styles.css' })
```

### Using with [Gulp](http://gulpjs.com)

```js
var gulp = require('gulp')
var postcss = require('gulp-postcss')
var import = require('postcss-import')
var reporter = require('postcss-reporter')
var immutableCss = require('immutable-css')

gulp.task('immutable', function () {
var processors = [
import,
immutableCss,
// If you want Immutable CSS to halt the gulp pipline if there are any warnings
// then set throwError to true
reporter({clearMessages: true, throwError: false})
]

gulp.src('assets/css/base.css')
.pipe(postcss(processors))
.pipe(gulp.dest('dist/css'))
})
```

#### Input

```css
@import 'basscss';

.button {}
.left {}
.something-else {}
```

#### Output

```sh
⚠ .button was mutated 2 times
[line 93, col 1]: /css/basscss.css
[line 3, col 1]: /css/custom.css
[immutable-css]
⚠ .left was mutated 2 times
[line 291, col 1]: /css/basscss.css
[line 4, col 1]: /css/custom.css
[immutable-css]
```

### Options

* `strict` (Boolean): Whether class mutations are allowed in the same file. Default: `false`.
* `ignoredClasses` (Array): List of classes to ignore for mutation violations.
Ex: `['.some-mutable-class']`
* `immutableClasses` (Array): List of classes to check against.
Ex: `['.button', '.foobar']`
* `immutablePrefixes` (Array): List of prefix regexes that are immutable.
Ex: `[/\.u\-/, /\.util\-/]`
* `callback` (Function): Callback that receives a mutations object.
Ex: `function (mutations) { console.log(mutations) }`
* `verbose` (Boolean): Whether mutations are logged (defaults to true with PostCSS).

#### Using the callback

Immutable CSS accepts an optional callback, which returns the mutations hash. The key is the mutated class name, the value is an array of mutating filenames.

```js
postcss([
import(),
immutableCss({ ignoredClasses: ['.button'] }, function(mutations) {
console.log(mutations)
// => { '.foobar': [] }
})
]).process(css, { from: cssFile })
```

### Using the [immutable-css-cli](https://github.com/johnotander/immutable-css-cli)

```sh
npm i -g immutable-css-cli
```

```sh
immutable-css css/main.css
⚠ .button was mutated 2 times
[line 93, col 1]: /css/_basscss.css
[line 11, col 1]: /css/_custom.css
[immutable-css]
⚠ .left was mutated 2 times
[line 291, col 1]: /css/_basscss.css
[line 15, col 1]: /css/_custom.css
[immutable-css]
```

## Dependencies

*
*
*

## Related Reading

*
*
*
*
*

## License

MIT

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Crafted with <3 by [@jxnblk](https://twitter.com/jxnblk) & [@4lpine](https://twitter.com/4lpine).

***

> This package was initially generated with [yeoman](http://yeoman.io) and the [p generator](https://github.com/johnotander/generator-p.git).