Skip to content

Instantly share code, notes, and snippets.

@fivepixels
Last active June 14, 2023 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fivepixels/6ae3de43ed3f980d2cc401dbd13f214b to your computer and use it in GitHub Desktop.
Save fivepixels/6ae3de43ed3f980d2cc401dbd13f214b to your computer and use it in GitHub Desktop.
The default Prettier Configuration File
const prettierConfig = {
arrowParens: "avoid",
singleQuote: false,
bracketSpacing: true,
endOfLine: "lf",
semi: true,
tabWidth: 2,
useTabs: false,
trailingComma: "none"
};
module.exports = prettierConfig;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment