mirror of
https://github.com/ducky-labs/htmx-go-todo.git
synced 2026-02-04 14:41:00 +00:00
15 lines
286 B
JavaScript
15 lines
286 B
JavaScript
/** @type {import("prettier").Config} */
|
|
const config = {
|
|
plugins: ["prettier-plugin-go-template"],
|
|
overrides: [
|
|
{
|
|
files: ["*.html"],
|
|
options: {
|
|
parser: "go-template",
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = config;
|