action-conventional-commits/.prettierrc.js
2020-06-11 07:50:40 +02:00

12 lines
214 B
JavaScript

module.exports = {
printWidth: 100,
tabWidth: 2,
overrides: [
{
files: ["*.js", "*.ts", "*.tsx"],
options: {
tabWidth: 4
}
}
]
};