webpack/.prettierrc.js

23 lines
290 B
JavaScript
Raw Normal View History

2018-03-26 16:56:10 +02:00
module.exports = {
printWidth: 80,
useTabs: true,
tabWidth: 2,
2020-03-28 23:10:15 +01:00
trailingComma: "none",
arrowParens: "avoid",
overrides: [
{
files: "*.json",
options: {
parser: "json",
useTabs: false
}
},
{
files: "*.ts",
options: {
parser: "typescript"
}
}
]
2018-03-26 16:56:10 +02:00
};