action-conventional-commits/.prettierrc.js

13 lines
214 B
JavaScript
Raw Permalink Normal View History

2020-06-11 07:50:40 +02:00
module.exports = {
printWidth: 100,
tabWidth: 2,
overrides: [
{
files: ["*.js", "*.ts", "*.tsx"],
options: {
tabWidth: 4
}
}
]
};