Skip to content

Instantly share code, notes, and snippets.

@eriveltondasilva
Last active November 27, 2024 04:32
Show Gist options
  • Save eriveltondasilva/c18955414994474e20ae195dcdfac223 to your computer and use it in GitHub Desktop.
Save eriveltondasilva/c18955414994474e20ae195dcdfac223 to your computer and use it in GitHub Desktop.
Este arquivo define a configuração do Prettier para formatar o código no projeto.
{
"experimentalTernaries": true,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"singleAttributePerLine": true,
"overrides": [
{
"files": ".prettierrc",
"options": {
"parser": "json"
}
},
{
"files": "*.php",
"options": {
"phpVersion": "8.2",
"trailingCommaPHP": true,
"braceStyle": "per-cs",
"parser": "php"
}
}
],
"tailwindFunctions": ["tw", "twJoin", "twMerge"],
"plugins": ["@prettier/plugin-php", "prettier-plugin-tailwindcss"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment