DEV: Enable `no-curly-component-invocation` lint rule

This will ensure we invoke components consistently across our codebase
This commit is contained in:
David Taylor 2022-07-04 13:00:11 +01:00
parent c011dd7b43
commit 24413e5a11
1 changed files with 11 additions and 0 deletions

View File

@ -49,5 +49,16 @@ module.exports = {
"style-concatenation": true,
"table-groups": true,
"link-href-attributes": false,
"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",
],
},
},
};