2020-02-05 10:33:15 -06:00
|
|
|
module.exports = {
|
2020-03-26 13:37:12 -05:00
|
|
|
extends: "recommended",
|
2020-02-05 10:33:15 -06:00
|
|
|
ignore: ["**/*.raw"],
|
|
|
|
|
2020-03-26 13:48:28 -05:00
|
|
|
// Pending:
|
|
|
|
// "eol-last": "always",
|
|
|
|
|
2020-02-05 10:33:15 -06:00
|
|
|
rules: {
|
2020-03-26 13:37:12 -05:00
|
|
|
"block-indentation": false,
|
2020-03-26 13:13:54 -05:00
|
|
|
"deprecated-render-helper": true,
|
2020-03-26 13:37:12 -05:00
|
|
|
"img-alt-attributes": false,
|
2020-03-26 13:48:28 -05:00
|
|
|
"linebreak-style": true,
|
2020-03-07 05:58:48 -06:00
|
|
|
"link-rel-noopener": true,
|
2020-03-26 13:13:54 -05:00
|
|
|
"no-abstract-roles": true,
|
|
|
|
"no-args-paths": true,
|
|
|
|
"no-attrs-in-components": true,
|
|
|
|
"no-debugger": true,
|
2020-03-26 14:21:20 -05:00
|
|
|
"no-duplicate-attributes": true,
|
2020-03-26 13:13:54 -05:00
|
|
|
"no-extra-mut-helper-argument": true,
|
|
|
|
"no-html-comments": true,
|
|
|
|
"no-index-component-invocation": true,
|
2020-03-26 13:37:12 -05:00
|
|
|
"no-inline-styles": false,
|
2020-03-26 13:13:54 -05:00
|
|
|
"no-input-block": true,
|
|
|
|
"no-input-tagname": true,
|
2020-03-26 13:37:12 -05:00
|
|
|
"no-implicit-this": false,
|
2020-03-26 13:13:54 -05:00
|
|
|
"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,
|
2020-03-26 13:56:42 -05:00
|
|
|
"no-multiple-empty-lines": true,
|
2020-03-26 13:13:54 -05:00
|
|
|
"no-obsolete-elements": true,
|
|
|
|
"no-outlet-outside-routes": true,
|
|
|
|
"no-partial": true,
|
2020-03-26 13:37:12 -05:00
|
|
|
"no-positive-tabindex": false,
|
|
|
|
"no-quoteless-attributes": false,
|
2020-03-26 13:13:54 -05:00
|
|
|
"no-shadowed-elements": true,
|
2020-03-26 13:49:38 -05:00
|
|
|
"no-trailing-spaces": true,
|
2020-03-26 13:13:54 -05:00
|
|
|
"no-triple-curlies": true,
|
2020-03-26 13:31:31 -05:00
|
|
|
"no-unbound": true,
|
2020-03-09 04:03:46 -05:00
|
|
|
"no-unnecessary-concat": true,
|
2020-03-26 13:13:54 -05:00
|
|
|
"no-unnecessary-component-helper": true,
|
2020-03-09 07:44:34 -05:00
|
|
|
"no-unused-block-params": true,
|
2020-03-26 13:37:12 -05:00
|
|
|
"quotes": false,
|
|
|
|
"require-button-type": false,
|
2020-03-26 13:31:02 -05:00
|
|
|
"require-iframe-title": true,
|
2020-03-26 13:37:12 -05:00
|
|
|
"require-valid-alt-text": false,
|
2020-03-26 13:13:54 -05:00
|
|
|
"self-closing-void-elements": true,
|
2020-03-11 03:23:10 -05:00
|
|
|
"simple-unless": true,
|
2020-03-26 13:13:54 -05:00
|
|
|
"style-concatenation": true,
|
|
|
|
"table-groups": true
|
2020-02-05 10:33:15 -06:00
|
|
|
}
|
|
|
|
};
|