mirror of
https://github.com/documize/community.git
synced 2025-07-18 20:59:43 +02:00
20 lines
512 B
JavaScript
20 lines
512 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
extends: 'recommended',
|
|
rules: {
|
|
'attribute-indentation': false,
|
|
'block-indentation': false,
|
|
'img-alt-attributes': false,
|
|
'link-rel-noopener': false,
|
|
'no-inline-styles': false,
|
|
'no-invalid-interactive': false,
|
|
'no-nested-interactive': false,
|
|
'no-triple-curlies': false,
|
|
'no-global-jquery': false,
|
|
'style-concatenation': false,
|
|
'simple-unless': false,
|
|
}
|
|
};
|
|
|
|
// https://github.com/ember-template-lint/ember-template-lint/blob/master/docs/rules.md
|