discourse/.template-lintrc.js

23 lines
614 B
JavaScript

module.exports = {
plugins: ["ember-template-lint-plugin-discourse"],
extends: "discourse:recommended",
rules: {
"no-capital-arguments": false, // TODO: we extensively use `args` argument name
"no-curly-component-invocation": {
allow: [
// These are helpers, not components
"directory-item-header-title",
"directory-item-user-field-value",
"directory-item-value",
"directory-table-header-title",
"loading-spinner",
"mobile-directory-item-label",
],
},
"no-implicit-this": {
allow: ["loading-spinner"],
},
},
};