Files
5chan/prettier.config.cjs
T

11 lines
204 B
JavaScript
Raw Normal View History

2023-09-16 21:19:56 +02:00
module.exports = {
2023-09-16 21:39:25 +02:00
semi: true,
2023-09-16 21:19:56 +02:00
singleQuote: true,
printWidth: 170,
2023-09-16 21:39:25 +02:00
bracketSpacing: true,
tabWidth: 2,
trailingComma: 'all',
jsxSingleQuote: true,
arrowParens: 'always',
useTabs: false,
2023-09-16 21:19:56 +02:00
}