@fenge/eslint-config
Version:
A super strict eslint config for linting js/ts/package.json.
25 lines • 1.09 kB
TypeScript
import htmlPlugin from "@html-eslint/eslint-plugin";
export declare function html(): readonly [{
readonly name: "fenge/html";
readonly files: readonly ["**/*.html"];
readonly plugins: {
readonly "@html-eslint": typeof htmlPlugin;
};
readonly language: "@html-eslint/html";
readonly rules: {
readonly "@html-eslint/require-img-alt": "error";
readonly "@html-eslint/require-doctype": "error";
readonly "@html-eslint/require-title": "error";
readonly "@html-eslint/no-multiple-h1": "error";
readonly "@html-eslint/no-duplicate-id": "error";
readonly "@html-eslint/require-li-container": "error";
readonly "@html-eslint/no-obsolete-tags": "error";
readonly "@html-eslint/require-closing-tags": readonly ["error", {
readonly selfClosing: "always";
}];
readonly "@html-eslint/no-duplicate-attrs": "error";
readonly "@html-eslint/use-baseline": "error";
readonly "@html-eslint/no-duplicate-in-head": "error";
};
}];
//# sourceMappingURL=html.d.ts.map