# gulp-csscomb-lint

> Lint CSS coding style with CSScomb

Latest version **0.0.2** (published 2014-10-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install gulp-csscomb-lint
pnpm add gulp-csscomb-lint
yarn add gulp-csscomb-lint
bun add gulp-csscomb-lint
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2014-10-13 |
| First published | 2014-10-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 7 |
| Author | Vladimir Starkov |
| Maintainers | matmuchrapna |
| Keywords | gulp, gulpplugin, gulpfriendly, css, csscomb, lint, linting |

## Links

- npm: https://www.npmjs.com/package/gulp-csscomb-lint
- Repository: https://github.com/matmuchrapna/gulp-csscomb-lint
- Issues: https://github.com/matmuchrapna/gulp-csscomb-lint/issues
- npm.io page: https://npm.io/package/gulp-csscomb-lint

## Dependencies (3)

- [csscomb](https://npm.io/package/csscomb.md) ~3.0.3
- [through2](https://npm.io/package/through2.md) ~0.6.3
- [gulp-util](https://npm.io/package/gulp-util.md) ~3.0.1

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 0.0.2 (latest) — 2014-10-13

## README

# gulp-csscomb-lint

> Lint CSS coding style with [CSScomb](https://npmjs.org/package/csscomb).

## Installation

Install via [npm](https://npmjs.org/package/gulp-csscomb-lint):

```
npm i --save-dev gulp-csscomb-lint
```

## Usage

```js
var gulp = require('gulp');
var csscombLint = require('gulp-csscomb-lint');

gulp.task('lint', function() {
    return gulp.src(['/css/*.css'])
        .pipe(csscombLint());
});
```

## Options

If there is `.csscomb.json` file present in the same folder as the source file(s),
or in the project root folder, `gulp-csscomb-lint` will read config settings from it
instead of default config.

You can also specify a pre-defined configuration. Ex.: `csscomb('zen')`

## License

MIT (c) 2014 Vladimir Starkov.

---
_Source: https://npm.io/package/gulp-csscomb-lint · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
