BenoitZugmeyer / eslint-plugin-html

An ESLint plugin to extract and lint scripts from HTML files.
ISC License
430 stars 51 forks source link

Nested "html" setting support #58

Closed BenoitZugmeyer closed 7 years ago

BenoitZugmeyer commented 7 years ago

For now, settings need to be written like:

"settings": {
  "html/html-extensions": ...,
  "html/indent": ...
}

I'd like to support the following format too:

"settings": {
  "html": {
    "html-extensions": ...,
    "indent": ...
  }
}