ember-cli-template-lint icon indicating copy to clipboard operation
ember-cli-template-lint copied to clipboard

print-failing generate list with 'null' as value

Open panthony opened this issue 6 years ago • 0 comments

Using:

I'm trying to use ember template-lint:print-failing with the following rules:

  rules: {
    'no-bare-strings': true,
    'attribute-indentation': false,
    'no-inline-styles': false
  },

And I get lots of entries like this:

  {
    "moduleId": "my-app/components/my-component/template",
    "only": [
      null
    ]
  },

Where the offending rule would have been attribute-indentation.

panthony avatar Jan 29 '19 08:01 panthony