webpack/.prettierrc.js

14 lines
152 B
JavaScript
Raw Normal View History

2018-03-26 16:56:10 +02:00
module.exports = {
printWidth: 80,
useTabs: true,
tabWidth: 2,
overrides: [
{
files: "*.json",
options: {
useTabs: false
}
}
]
2018-03-26 16:56:10 +02:00
};