19 lines
306 B
JavaScript
19 lines
306 B
JavaScript
|
|
// 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,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|