You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

gulp-rb-validate-js

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-rb-validate-js

Gulp plugin to check JS files according to web frontend guidelines

1.0.0
latest
npmnpm
Version published
Weekly downloads
2
-94.59%
Maintainers
1
Weekly downloads
 
Created
Source

#Installation

Install package with NPM and add it to your development dependencies:

npm install gulp-rb-validate-js --save-dev

#Usage

Basic

var rbjs   = require('gulp-rb-validate-js');

gulp.task('rb-validate', function () {

    gulp.src('./src/**/*.js')
        .pipe(rbjs());
        
    });

With Parameter

var rbjs  = require('gulp-rb-validate-js');

gulp.task('rb-validate', function () {

    gulp.src('./src/**/*.js')
        .pipe(rbjs({
            exitOnError: true,
            indentPattern: '\t'
         });
        
    });

#Parameters

exitOnError: Boolean (Default: false)

Exit with code 1 if an error with obligation level red is found.

indentPattern: String (Default: 2 spaces)

Define the indentation pattern.

checkIndent: Boolean (Default: true)

Set to false to deactivate indentation check.

Keywords

validator

FAQs

Package last updated on 07 Nov 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