bsky-app/.prettierrc.js

9 lines
155 B
JavaScript
Raw Normal View History

2022-06-08 00:50:05 +02:00
module.exports = {
2022-06-09 20:03:25 +02:00
semi: false,
2022-06-08 00:50:05 +02:00
arrowParens: 'avoid',
bracketSameLine: true,
bracketSpacing: false,
singleQuote: true,
trailingComma: 'all',
2022-06-09 20:03:25 +02:00
}