googlearchive / polylint

Lint polymer!
BSD 3-Clause "New" or "Revised" License
116 stars 19 forks source link

List which errors polylint detects #136

Open NicolasRannou opened 8 years ago

NicolasRannou commented 8 years ago

It would be so useful to know what Polylint is supposed to report and which errors it can not track down.

etc.

NicolasRannou commented 8 years ago

also, will it detect undeclare properties only in the dom or also in a method call?

<dummy-elt prop="anUndeclaredProp"></dummy-elt> // error reported

vs

hello: function(){
   this.anUndeclaredProp = "something"; // no error reported
 }