2023-10-23 06:08:35 -04:00
|
|
|
const templateLint = require("@discourse/lint-configs/template-lint");
|
2020-02-05 11:33:15 -05:00
|
|
|
|
2023-10-23 06:08:35 -04:00
|
|
|
module.exports = {
|
|
|
|
...templateLint,
|
2020-02-05 11:33:15 -05:00
|
|
|
rules: {
|
2023-10-23 06:08:35 -04:00
|
|
|
...templateLint.rules,
|
2022-07-06 04:37:54 -04:00
|
|
|
"no-capital-arguments": false, // TODO: we extensively use `args` argument name
|
2023-10-23 06:08:35 -04:00
|
|
|
"require-button-type": false,
|
2020-09-04 14:01:14 -04:00
|
|
|
},
|
2020-02-05 11:33:15 -05:00
|
|
|
};
|