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

https://github.com/vikrantnegi/csslint-config

My Personal CSS Lint Configuration file by extending stylelint's stylelint-config-standard
https://github.com/vikrantnegi/csslint-config

csslint stylelint

Last synced: over 1 year ago
JSON representation

My Personal CSS Lint Configuration file by extending stylelint's stylelint-config-standard

Awesome Lists containing this project

README

          

# csslint-config

>My Personal CSS Lint Configuration file
>Extension of [stylelint's](https://github.com/stylelint/stylelint) [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard)

## For detailed Installation
Go to [stylelint](https://github.com/stylelint/stylelint) repo to find installation of stylelint and use [CLI](https://github.com/stylelint/stylelint/blob/master/docs/user-guide/cli.md), [Node API](https://github.com/stylelint/stylelint/blob/master/docs/user-guide/node-api.md) or [PostCSS plugin](https://github.com/stylelint/stylelint/blob/master/docs/user-guide/postcss-plugin.md) to get started.

## Quick start

```bash

# Clone git repo
git clone https://github.com/vikrantnegi/csslint-config
cd csslint-config

#Install stylelint
npm install stylelint

# Install all required dependencies
npm install

# Start linting by either putting all your CSS files or particular one, in the css folder and
To Lint all your css files at once run: stylelint css/*.css
To Lint a particular css file run: stylelint css/file-name.css

```

### Tutorials for stylelint
* [creativenightly](http://www.creativenightly.com/2016/02/How-to-lint-your-css-with-stylelint/)

### Quick Links
* [stylelint](https://github.com/stylelint/stylelint)
* [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard)