mirror of https://github.com/luizdepra/hugo-coder.git

Luiz F. A. de Prá
3 days ago 011adf79ec795af29e06f393c9eb774a4b09cce4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
  plugins: ["prettier-plugin-go-template"],
  printWidth: 100,
  tabWidth: 2,
  useTabs: false,
  overrides: [
    {
      files: ["*.html"],
      options: {
        parser: "go-template"
      }
    }
  ]
};