Socialify

Folder ..

Viewing prettier.config.mjs
13 lines (13 loc) • 233.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
/**
 * @type {import("prettier").Config}
 */
export default {
  semi: true,
  tabWidth: 2,
  useTabs: false,
  printWidth: 80,
  singleQuote: false,
  arrowParens: "always",
  trailingComma: "es5",
  singleAttributePerLine: true,
};