@hint/parser-jsx
webhint parser needed to analyze HTML elements in JSX
Last updated 5 years ago by sarvaje .
Apache-2.0 · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install @hint/parser-jsx 
SYNC missed versions from official npm registry.

JSX (@hint/parser-jsx)

The jsx parser allows hints to analyze HTML elements from JSX files. It operates on ASTs received via parse::end::javascript events and emits the same events as @hint/parser-html. This ensures existing hints targeting HTML files will work without modification.

This package is installed automatically by webhint:

npm install hint --save-dev

To use it, activate it via the .hintrc configuration file:

{
    "connector": {...},
    "formatters": [...],
    "hints": {
        ...
    },
    "parsers": ["javascript", "jsx"],
    ...
}

Note: The recommended way of running webhint is as a devDependency of your project.

Events emitted

This parser emits the event parse::end::html of type HTMLParse which has the following information:

  • document: an HTMLDocument object containing the parsed document.
  • html: a string containing the generated HTML source code.
  • resource: the parsed resource.

And the event parse::start::html of type Event which has the following information:

  • resource: the resource that is going to be parsed

Current Tags

  • 1.1.3                                ...           latest (4 years ago)

24 Versions

  • 1.1.3                                ...           4 years ago
  • 1.1.2                                ...           4 years ago
  • 1.1.1                                ...           4 years ago
  • 1.1.0                                ...           4 years ago
  • 1.0.19                                ...           4 years ago
  • 1.0.18                                ...           4 years ago
  • 1.0.17                                ...           4 years ago
  • 1.0.16                                ...           4 years ago
  • 1.0.15                                ...           4 years ago
  • 1.0.14                                ...           4 years ago
  • 1.0.13                                ...           4 years ago
  • 1.0.12                                ...           5 years ago
  • 1.0.11                                ...           5 years ago
  • 1.0.10                                ...           5 years ago
  • 1.0.9                                ...           5 years ago
  • 1.0.8                                ...           6 years ago
  • 1.0.7                                ...           6 years ago
  • 1.0.6                                ...           6 years ago
  • 1.0.5                                ...           6 years ago
  • 1.0.4                                ...           6 years ago
  • 1.0.3                                ...           6 years ago
  • 1.0.2                                ...           6 years ago
  • 1.0.1                                ...           6 years ago
  • 1.0.0                                ...           6 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (4)
Dev Dependencies (14)

Copyright 2013 - present © cnpmjs.org | Home |