2020-02-05 10:33:15 -06:00
|
|
|
module.exports = {
|
|
|
|
// extends: "recommended",
|
|
|
|
ignore: ["**/*.raw"],
|
|
|
|
|
|
|
|
rules: {
|
2020-02-10 01:13:50 -06:00
|
|
|
"self-closing-void-elements": true,
|
2020-02-10 01:14:26 -06:00
|
|
|
"table-groups": true,
|
2020-02-11 08:55:16 -06:00
|
|
|
"style-concatenation": true,
|
2020-03-06 10:35:18 -06:00
|
|
|
"no-invalid-interactive": true,
|
2020-03-07 05:58:48 -06:00
|
|
|
"link-rel-noopener": true,
|
2020-03-09 04:03:46 -05:00
|
|
|
"no-unnecessary-concat": true,
|
2020-03-09 07:44:34 -05:00
|
|
|
"no-unused-block-params": true,
|
2020-03-09 09:28:31 -05:00
|
|
|
"no-unbound": true,
|
2020-03-10 13:00:12 -05:00
|
|
|
"simple-unless": true
|
2020-02-05 10:33:15 -06:00
|
|
|
}
|
|
|
|
};
|