grunt-htmlhint-inline

0.1.8 • Public • Published

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

Package Sidebar

Install

npm i grunt-htmlhint-inline

Weekly Downloads

1

Version

0.1.8

License

MIT

Unpacked Size

12.5 kB

Total Files

8

Last publish

Collaborators

  • kazu69
  • thedaviddias