2020-02-05 11:33:15 -05:00
|
|
|
module.exports = {
|
|
|
|
// extends: "recommended",
|
|
|
|
ignore: ["**/*.raw"],
|
|
|
|
|
|
|
|
rules: {
|
2020-02-10 02:13:50 -05:00
|
|
|
"self-closing-void-elements": true,
|
2020-02-10 02:14:26 -05:00
|
|
|
"table-groups": true,
|
2020-02-11 09:55:16 -05:00
|
|
|
"style-concatenation": true,
|
|
|
|
"no-invalid-interactive": true
|
2020-02-05 11:33:15 -05:00
|
|
|
}
|
|
|
|
};
|