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