aboutsummaryrefslogtreecommitdiff
path: root/.prettierrc.cjs
blob: e330988a4c2a27632e136f6cdbcaada85f6fd49c (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: "README.md",
      options: {
        printWidth: 80,
      },
    },
  ],
};