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

grunt-htmlhint-inline

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-htmlhint-inline

Grunt plugin for linting inline html

  • 0.1.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

grunt-htmlhint-inline

Build Status

NPM

This plug-in template files of view ( for example .erb , etc.) or , you can linting using htmlhint the html of the old type of php (view and logic are not separated ). Removes the specific embedded code , it is intended to run the htmlhint as pure html.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-htmlhint-inline --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-htmlhint-inline');

The "htmlhint-inline" task

Overview

In your project's Gruntfile, add a section named htmlhint-inline to the data object passed into grunt.initConfig().

grunt.initConfig({
  htmlhint_inline: {
      options: {
        htmlhintrc: '.htmlhintrc',
        ignore: {
            '<?php': '?>'
        }
      },
      dest: {
        src: ['./test/*.phtml']
      }
    },
});

Options

htmlhintrc

Type: String Default value: null

htmlhintrc file must be a valid JSON. If you specify this file, options that have been defined in it will be used in the global. If there is specified in the task options, the options in this file will be overwritten.

{
  "tagname-lowercase": true
}
patterns

Type: Array Default: []

Enable the replacement by the pattern

patterns.match

Type: RegExp|String

Indicates the matching expression.

patterns.replacement

Type: String|Function

reporterOutput

Type: String Default: null

Output the task execution results to a specified file.

force

Type: Boolean Default value: false

Report HTMLHint errors but dont fail the task

Usage Examples

grunt.initConfig({
    htmlhint_inline: {
      options: {
        htmlhintrc: '.htmlhintrc',
        ignore: {
            '<?php': '?>'
        },
        patterns: [
          {
            match: /hoge/g,
            replacement: 'fuga'
          }
        ],
        reporterOutput: './log/grunt.log',
      },
      dest: {
        src: ['./test/*.phtml']
      }
    }
});

License

MIT

Keywords

FAQs

Package last updated on 08 Sep 2018

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