DocsGPT/frontend/prettier.config.cjs

8 lines
113 B
JavaScript
Raw Normal View History

2023-02-09 02:31:22 +00:00
module.exports = {
2023-02-09 17:21:08 +00:00
trailingComma: 'all',
tabWidth: 2,
2023-02-10 21:20:05 +00:00
semi: true,
2023-02-09 17:21:08 +00:00
singleQuote: true,
printWidth: 80,
}