Skip to content
Snippets Groups Projects
prettier.config.cjs 230 B
Newer Older
Axel Prel's avatar
Axel Prel committed
/** @type {import('prettier').Config} */

const config = {
  bracketSpacing: false,
  printWidth: 88,
  proseWrap: "always",
  semi: true,
  trailingComma: "es5",
  xmlWhitespaceSensitivity: "ignore",
};

module.exports = config;