mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
11921c4868
https://github.com/ember-template-lint/ember-template-lint/blob/master/docs/rule/no-html-comments.md
20 lines
463 B
JavaScript
20 lines
463 B
JavaScript
module.exports = {
|
|
// extends: "recommended",
|
|
ignore: ["**/*.raw"],
|
|
|
|
rules: {
|
|
"self-closing-void-elements": true,
|
|
"table-groups": true,
|
|
"style-concatenation": true,
|
|
"no-invalid-interactive": true,
|
|
"link-rel-noopener": true,
|
|
"no-unnecessary-concat": true,
|
|
"no-unused-block-params": true,
|
|
"no-unbound": true,
|
|
"simple-unless": true,
|
|
"no-triple-curlies": true,
|
|
"no-partial": true,
|
|
"no-html-comments": true
|
|
}
|
|
};
|