Create .prettierrc.js

This commit is contained in:
Aleksandr Statciuk 2022-12-29 23:15:57 +03:00
parent 807fb1c9d4
commit 696b96f73b

12
.prettierrc.js Normal file
View file

@ -0,0 +1,12 @@
module.exports = {
tabWidth: 2,
useTabs: false,
endOfLine: 'lf',
semi: false,
singleQuote: true,
printWidth: 100,
trailingComma: 'none',
bracketSpacing: true,
singleAttributePerLine: false,
arrowParens: 'avoid'
}