Last active
May 23, 2022 14:51
-
-
Save vinicius73/5fdbbca44f32ef1e8b0fb7729d67e616 to your computer and use it in GitHub Desktop.
prettierrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.vscode/ | |
.yarn/ | |
dist/ | |
coverage/ | |
public/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
printWidth: 80 | |
tabWidth: 2 | |
useTabs: false | |
semi: true | |
singleQuote: true | |
trailingComma: es5 | |
bracketSpacing: true | |
bracketSameLine: false | |
arrowParens: avoid | |
htmlWhitespaceSensitivity: ignore | |
endOfLine: lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": { | |
"format": "prettier . -w -u", | |
"format:check": "prettier . -c -u" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment