Last active
September 9, 2022 20:03
-
-
Save amadeus/b6d360e7e6823ab226be85dc0c1fae29 to your computer and use it in GitHub Desktop.
.prettierrc template
This file contains 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
{ | |
"printWidth": 120, | |
"trailingComma": "es5", | |
"bracketSpacing": false, | |
"singleQuote": true, | |
"bracketSameLine": true, | |
"overrides": [ | |
{ | |
"files": ["*.css", "*.styl"], | |
"options": { | |
"parser": "css" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment