open-consul/ui-v2/.template-lintrc.js
John Cowen 6ec5c61ca6 ui: Upgrade to ember 3.16 Octane Edition (#7334)
* v3.12.0...v3.16.0

* Upgrades

* Remove old wormhole fix

* Fixup ember power select (camelcasing)

* Fixup immedaitely closing dropdown

When clicking on the syntax selector, it seemed like an extra click
event was firing from the label, which then immediately closed the
dropdown. By adding a for="" attribute this event isn't passed to the
dropdown menu and therefore doesn't immediately close

* Fix up integration tests with new style (plus standardize titles)

* Temporarily disable some template linting rules

* Add required methods (even though they aren't used anywhere)

* Ensure event sources get closed on destruction
2020-05-12 17:14:10 +00:00

35 lines
784 B
JavaScript

'use strict';
module.exports = {
extends: 'octane',
rules: {
'no-partial': false,
'no-invalid-interactive': false,
'simple-unless': false,
'self-closing-void-elements': false,
'no-unnecessary-concat': false,
'no-quoteless-attributes': false,
'no-nested-interactive': false,
'block-indentation': false,
'quotes': false,
'no-inline-styles': false,
'no-triple-curlies': false,
'no-unused-block-params': false,
'style-concatenation': false,
'link-rel-noopener': false,
'no-implicit-this': false,
'no-curly-component-invocation': false,
'no-action': false,
'no-negated-condition': false,
'no-invalid-role': false,
'no-unnecessary-component-helper': false,
'link-href-attributes': false
},
};