GitXplorerGitXplorer
e

grunt-ensure-id

public
1 stars
3 forks
1 issues

Commits

List of commits on branch master.
Unverified
ff51d7c2fa5b694499247c90034f5a235b316de7

Autofix id's (#2)

JJaviPG committed 8 years ago
Unverified
4c61925ea51ed547a4ec16207f78cf5c5fd8b146

Update README.md

eezraroi committed 9 years ago
Unverified
f1eb3afb311498613d7bf75f2294a4953f6efcd9

Update README.md

eezraroi committed 9 years ago
Unverified
eff586b56493683a05ac6921d235740cd75bc0d8

fixes #1

eezraroi committed 9 years ago
Unverified
243b5afb301c7547ff33743ad94fff1a6f8707ba

first commit

eezraroi committed 9 years ago
Unverified
837afcf76546fa2afa582abf74bbe965fa93eae8

Initial commit

eezraroi committed 9 years ago

README

The README file for this repository.

grunt-ensure-id

Ensures that all specified html elements has id attribute.

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-ensure-id --save-dev

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

grunt.loadNpmTasks('grunt-ensure-id');

The "ensure_id" task

Overview

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

grunt.initConfig({
  ensure_id: {
    options: {
      check: 'id',
      elements : ['button', 'a'],
      attrs: ['ng-click', 'ng-submit'],
      autofix: true
    },
    main: {
      src: ['test/fixtures/*']
    },
  },
});

Options

options.check

Type: string Default value: id

The attribute to be observed. Ex. 'id', 'ng-attr-id' or other id variants

options.elements

Type: Array Default value: ['button', 'a', 'input', 'select']

Which HTML elements should have id attribute.

options.attrs

Type: Array Default value: ['ng-click', 'ng-submit']

Which HTML elements which has the above attributes should have id attribute.

options.autofix

Type: boolean Default value: false

Add ID to all detected items in the following format:

nameFile_element_numberFile_uniqueId

Example (test-file.html): testFile_input_2_489

Usage Examples

Default Options

In this example, the default options are used to check form html elements without ids.

grunt.initConfig({
  ensure_id: {
    options: {},
    files: {
      'dest': ['components/**/*.html', 'view/**/*.html'],
    },
  },
});

Custom Options

In this example, custom options are used to do something else with whatever else. So if the testing file has the content Testing and the 123 file had the content 1 2 3, the generated result in this case would be Testing: 1 2 3 !!!

grunt.initConfig({
  ensure_id: {
    options: {
      check: 'id',
      elements : ['button', 'a'],
      attrs: ['ng-click'],
      autofix: true
    },
    files: {
      'dest/default_options': ['src/testing', 'src/123'],
    },
  },
});

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)