Update prettier.config.js

This commit is contained in:
plebeius.eth
2023-09-16 21:39:25 +02:00
parent 0aa105a4b9
commit d963c90d26
+7 -2
View File
@@ -1,6 +1,11 @@
module.exports = {
semi: false,
semi: true,
singleQuote: true,
printWidth: 170,
bracketSpacing: false,
bracketSpacing: true,
tabWidth: 2,
trailingComma: 'all',
jsxSingleQuote: true,
arrowParens: 'always',
useTabs: true,
}