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