mhtml-to-html
Version:
JavaScript library for parsing MHTML files and converting them into single HTML files
32 lines (30 loc) • 394 B
JavaScript
import js from "@eslint/js";
export default [
js.configs.recommended,
{
languageOptions: {
ecmaVersion: 2025,
sourceType: "module",
globals: {
console: "readonly",
}
},
rules: {
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"no-console": [
"warn"
]
}
}
];