summaryrefslogtreecommitdiff
path: root/.prettierrc.cjs
blob: 752ef12a6b415e8b67c61f1475e8151c48ce4074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/** @type {import('prettier').Config} */
module.exports = {
  printWidth: 120,
  semi: true,
  singleQuote: true,
  tabWidth: 2,
  trailingComma: 'es5',
  useTabs: false,

  plugins: [require.resolve('prettier-plugin-astro')],

  overrides: [{ files: '*.astro', options: { parser: 'astro' } }],
};