discourse/.template-lintrc.js
Joffrey JAFFEUX 61a2c3650d
DEV: enforces ember-template-lint: no-partial (#9173)
selected-posts parial is kept and calling the new component to prevent errors with users who would have rewritten topic.hbs

dashboard-problems and version-checks seem less risky and have only been converted to components
2020-03-11 15:30:14 +01:00

19 lines
433 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
}
};