// https://prettier.io/docs/en/configuration.html module.exports = { tabWidth: 4, overrides: [ { files: ["*.js", "*.ts", "*.vue", "*.json"], options: { tabWidth: 2, }, }, { files: ["*.html"], options: { printWidth: 120, }, }, ], };