Last active
December 31, 2022 19:52
-
-
Save DaviGn/ab2cdba5929b5839802e8ad2c7ae8fac to your computer and use it in GitHub Desktop.
Prettier
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
module.exports = { | |
tabWidth: 4, | |
bracketSpacing: true, | |
jsxBracketSameLine: false, | |
singleQuote: true, | |
semi: true, | |
trailingComma: 'none', | |
endOfLine: 'auto' | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment