discourse/.template-lintrc.js

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

12 lines
225 B
JavaScript
Raw Normal View History

2020-02-05 11:33:15 -05:00
module.exports = {
// extends: "recommended",
ignore: ["**/*.raw"],
rules: {
"self-closing-void-elements": true,
"table-groups": true,
"style-concatenation": true,
"no-invalid-interactive": true
2020-02-05 11:33:15 -05:00
}
};