Last active
January 23, 2020 02:32
-
-
Save devethan/a55d5db0cb6459d77ab8510a21ac3e45 to your computer and use it in GitHub Desktop.
Setting file for Prettier in vscode
This file contains hidden or 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
// prettier.config.js or .prettierrc.js | |
module.exports = { | |
trailingComma: 'all', | |
arrowParens: 'always', | |
singleQuote: true, | |
jsxSingleQuote: false, | |
bracketSpacing: false, | |
jsxBracketSameLine: true, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment