// https://prettier.io/docs/en/configuration.html export default { tabWidth: 4, endOfLine: "lf", overrides: [ { files: [ "*.js", "*.mjs", "*.jsx", "*.ts", "*.tsx", "*.vue", "*.json", "*.yml", "*.yaml", ], options: { tabWidth: 2, }, }, { files: ["*.html", "*.vue", "*.json"], options: { printWidth: 120, }, }, { files: ["*.ps1"], options: { endOfLine: "crlf", tabWidth: 4, }, }, ], };