Socket
Book a DemoInstallSign in
Socket

gulp-estilo

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-estilo

Plugin de `gulp.js` usado internamente en [Estudio Cíclope](http://ciclo.pe/) para validar nuestra guía de estilo de `html`, `css` y `javascript`.

latest
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

gulp-estilo

Plugin de gulp.js usado internamente en Estudio Cíclope para validar nuestra guía de estilo de html, css y javascript.

El plugin usa gulp-htmllint, gulp-csslint y gulp-eslint.

Ejemplo

const Gulp = require('gulp');
const Estilo = require('gulp-estilo');


Gulp.task('htmllint', (done) => {

  Gulp.src('www/index.html')
    .pipe(Estilo.html());
});


Gulp.task('csslint', () => {

  return Gulp.src('www/css/style.css')
    .pipe(Estilo.css());
});


Gulp.task('eslint', () => {

  return Gulp.src(['gulpfile.js', 'www/js/main.js'])
    .pipe(Estilo.js());
});


Gulp.task('lint', ['htmllint', 'csslint', 'eslint']);

FAQs

Package last updated on 20 Sep 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts