summary refs log tree commit diff stats
path: root/prettier.config.mjs
blob: de4d2a057f0a31aa7a6ecb1c586e80ed8f0d0469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * @see https://prettier.io/docs/en/configuration.html
 * @type {import("prettier").Config}
 */
const config = {
  trailingComma: 'es5',
  printWidth: 100,
  tabWidth: 2,
  semi: false,
  singleQuote: true,
}

export default config