discourse/.template-lintrc.cjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
314 B
JavaScript
Raw Permalink Normal View History

const templateLint = require("@discourse/lint-configs/template-lint");
2020-02-05 11:33:15 -05:00
module.exports = {
...templateLint,
2020-02-05 11:33:15 -05:00
rules: {
...templateLint.rules,
"no-capital-arguments": false, // @args is used for MountWidget
"require-button-type": false,
"no-action": true,
"require-strict-mode": true,
},
2020-02-05 11:33:15 -05:00
};