Skip to content

Commit

Permalink
revert prettier config back to js
Browse files Browse the repository at this point in the history
  • Loading branch information
KatieMSB committed Feb 28, 2025
1 parent bf0c13c commit a211f50
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions prettier.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const pluginGoTemplate = require.resolve('prettier-plugin-go-template')
module.exports = {
trailingComma: 'all',
semi: false,
jsxSingleQuote: true,
singleQuote: true,
endOfLine: 'lf',
plugins: [pluginGoTemplate],
overrides: [
{
files: ['*.html'],
options: {
parser: 'go-template',
},
},
],
}

0 comments on commit a211f50

Please sign in to comment.