aboutsummaryrefslogtreecommitdiff
path: root/.prettierrc.cjs
blob: 44f2bd933114230c0c00102a1c6de1d34199e520 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
  arrowParens: "avoid",
  printWidth: 120,
  trailingComma: "all",
  useTabs: false,
  quoteProps: "preserve",
  overrides: [
    {
      files: ["*.md"],
      options: {
        printWidth: 80,
      },
    },
  ],
};