mirror of
https://github.com/webiny/action-conventional-commits.git
synced 2024-11-10 12:09:34 +01:00
13 lines
214 B
JavaScript
13 lines
214 B
JavaScript
|
module.exports = {
|
||
|
printWidth: 100,
|
||
|
tabWidth: 2,
|
||
|
overrides: [
|
||
|
{
|
||
|
files: ["*.js", "*.ts", "*.tsx"],
|
||
|
options: {
|
||
|
tabWidth: 4
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|