Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-rb-validate-html

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-rb-validate-html

Gulp plugin to check HTML files according to web frontend guidelines

  • 0.0.2
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

#Installation

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

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

#Usage

Basic
var rbhtml   = require('gulp-rb-validate-html');

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

    gulp.src('./src/**/*.html')
        .pipe(rbhtml());
        
    });
With Parameter
var rbhtml  = require('gulp-rb-validate-html');

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

     gulp.src('./src/**/*.html')
        .pipe(rbhtml({
            abortOnError: true,
            indent: '\t',
            checkremote: false,
            checkviewport: false
        });
        
    });

#Parameters

abortOnError: Boolean (Default: false)

This will cause the plugin to abort with exit code 1 as soon as an invalid file is detected.

indent: String (Default: 4 spaces)

Defines the standard indentation pattern for the project

checkindent: Boolean (Default: true)

Set to false to deactivate indentation checks altogether

checkremote: Boolean (Default: true)

Set to false to deactivate all warnings caused by remote resource URLs in HTML code

checkviewport: Boolean (Default: true)

Set to false if the application is not responsive/for mobile devices

Keywords

FAQs

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc