Giter Site home page Giter Site logo

htmllint-loader's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

htmllint-loader's Issues

Warning unknown on multiple HTML

Got the error
0:0 warning unknown Index passed to line/column function (1178) does not keep with order (last was 2527)

I use webpack 2 with:

{
  enforce: "pre",
  test: /\.html?$/,
  loader: "htmllint-loader",
  options: {
    configFile: ".htmllintrc"
  },
  exclude: /(node_modules)/
}

and

{
	"plugins": [],

	"attr-bans": ["align", "background", "bgcolor", "border", "frameborder", "longdesc", "marginwidth", "marginheight", "scrolling", "style"],
	"attr-name-style": false,
	"attr-no-unsafe-char": false,
	"attr-req-value": false,
	"class-style": "dash",
	"doctype-first": "smart",
	"id-class-style": false,
	"img-req-alt": false,
	"img-req-src": false,
	"indent-style": "tabs",
	"line-end-style": false,
	"line-max-len": false,
	"spec-char-escape": false,
	"table-req-header": false,
	"tag-bans": ["style"],
	"tag-close": false,
	"tag-name-match": false,
	"tag-self-close": false
}

Any idea?

Doesn't get .htmllintrc from the root - After update 2.0.0

Hi!

After update to 2.0.0, the htmlint-loader does not use the .htmllintrc config from the root.

Before the update, this was working

{
  test: /\.html$/,
  use: ['raw-loader', 'htmllint-loader'],
},

Now, I had to fix with:

{
  test: /\.html$/,
  use: [
    'raw-loader',
    {
      loader: 'htmllint-loader',
      options: {
        config: '.htmllintrc',
      },
    },
  ],
},

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.