Last active
March 6, 2023 15:52
-
-
Save kasir-barati/2bcdeea964f88712eca171adb3fbd979 to your computer and use it in GitHub Desktop.
My default prettierrc file
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
{ | |
"arrowParens": "always", | |
"useTabs": false, | |
"bracketSpacing": true, | |
"endOfLine": "lf", | |
"printWidth": 70, | |
"quoteProps": "consistent", | |
"tabWidth": 4, | |
"trailingComma": "all", | |
"semi": true, | |
"singleQuote": true, | |
"overrides": [ | |
{ | |
"files": ["*.yml", "*.yaml"], | |
"options": { | |
"singleQuote": false, | |
"tabWidth": 2 | |
} | |
}, | |
{ | |
"files": "*.md", | |
"options": { | |
"tabWidth": 2 | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment