Initial commit

This commit is contained in:
Emanuel Turis
2023-10-13 22:20:05 +03:00
commit ccb0c914e5
18 changed files with 3673 additions and 0 deletions

14
prettier.config.cjs Normal file
View File

@@ -0,0 +1,14 @@
/** @type {import("prettier").Config} */
const config = {
plugins: ["prettier-plugin-go-template"],
overrides: [
{
files: ["*.html"],
options: {
parser: "go-template",
},
},
],
};
module.exports = config;