Create .prettierrc.js

This commit is contained in:
freearhey 2023-10-07 05:12:26 +03:00
parent b3bd3dcc21
commit f654a752d3
1 changed files with 10 additions and 0 deletions

10
.prettierrc.js Normal file
View File

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