Skip to content

Instantly share code, notes, and snippets.

@devethan
Last active January 23, 2020 02:32
Show Gist options
  • Save devethan/a55d5db0cb6459d77ab8510a21ac3e45 to your computer and use it in GitHub Desktop.
Save devethan/a55d5db0cb6459d77ab8510a21ac3e45 to your computer and use it in GitHub Desktop.
Setting file for Prettier in vscode
// 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