blob: 25a38d20af27a941cf2290dc453111a5805c4a3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
"use strict";
module.exports = {
overrides: [
{
// eslint-plugin-html doesn't automatically detect module sections in
// html files. Enable these as a module here. JavaScript files can use
// the mjs extension.
files: ["*.html"],
parserOptions: {
sourceType: "module",
},
},
],
};
|