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

gulp-rb-validate-css

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-css

Gulp plugin to validate css files

  • 0.0.1
  • 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 --save-dev gulp-rb-validate-css

#Usage

var rbcss  = require('gulp-rb-validate-css');

gulp.task('rb-validate', function () 
    gulp.src('./src/**/*.{scss,css}')
        .pipe(rbcss());
    });

#Parameters

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 CSS code

linewidth: Integer (Default: 80)

Set maximum allowed CSS line width for the project

forcerem: Boolean (Default: true)

Set to false to deactivate warnings for the use of ‘em’ font sizes

checkimportant: Boolean (Default: false)

Set to true to show warning when !important is used

abortOnError: Boolean (Default: false)

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

#License

Copyright (c) 2016 Robert Bosch GmbH. All Rights reserved

Keywords

FAQs

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