ember-template-lint / ember-cli-template-lint

Ember CLI integration for ember-template-lint

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Invalid rule configuration found: no-quoteless-attributes during build

sly7-7 opened this issue · comments

ember-cli: 3.4.3
node: 10.0.0
os: darwin x64

yarn list --pattern 'ember-cli-template-lint'
ember-cli-template-lint@0.7.6

This seems to not have any impact on the build / tests


'use strict';

module.exports = {
  extends: 'recommended',
  rules: {
    'no-bare-strings': true,
    'attribute-indentation': false,
    'no-inline-styles': false,
    'no-partial': false,
    'no-invalid-interactive': false,
    'block-indentation': false,
    'no-quoteless-attributes': false,
    'no-unnecessary-concat': false,
    'no-bare-strings': false,
    'simple-unless': false
  }
};