mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 00:47:46 -06:00
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
module.exports = {
|
|
// extends: "recommended",
|
|
ignore: ["**/*.raw"],
|
|
|
|
rules: {
|
|
"deprecated-render-helper": true,
|
|
"link-rel-noopener": true,
|
|
"link-href-attributes": true,
|
|
"no-abstract-roles": true,
|
|
"no-args-paths": true,
|
|
"no-attrs-in-components": true,
|
|
"no-debugger": true,
|
|
"no-extra-mut-helper-argument": true,
|
|
"no-html-comments": true,
|
|
"no-index-component-invocation": true,
|
|
"no-input-block": true,
|
|
"no-input-tagname": true,
|
|
"no-invalid-interactive": true,
|
|
"no-invalid-link-text": true,
|
|
"no-invalid-meta": true,
|
|
"no-invalid-role": true,
|
|
"no-log": true,
|
|
"no-negated-condition": true,
|
|
"no-nested-interactive": true,
|
|
"no-obsolete-elements": true,
|
|
"no-outlet-outside-routes": true,
|
|
"no-partial": true,
|
|
"no-shadowed-elements": true,
|
|
"no-triple-curlies": true,
|
|
"no-unbound": true,
|
|
"no-unnecessary-concat": true,
|
|
"no-unnecessary-component-helper": true,
|
|
"no-unused-block-params": true,
|
|
"require-iframe-title": true,
|
|
"self-closing-void-elements": true,
|
|
"simple-unless": true,
|
|
"style-concatenation": true,
|
|
"table-groups": true
|
|
}
|
|
};
|