🎨 refactor: format JS with Prettier (#240)

This commit is contained in:
Óscar 2024-01-03 01:44:31 +01:00 committed by GitHub
parent 39fc4ece61
commit b6a89e6370
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 93 additions and 62 deletions

11
.prettierrc.toml Normal file
View file

@ -0,0 +1,11 @@
semi = true
trailingComma = "es5"
singleQuote = true
printWidth = 88
tabWidth = 4
useTabs = false
arrowParens = "always"
bracketSpacing = true
jsxBracketSameLine = false
jsxSingleQuote = true
endOfLine = "lf"