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