Last active
June 9, 2020 14:58
-
-
Save danielwrobert/5a1204c5bd50bd5d11645bf0642ab75e to your computer and use it in GitHub Desktop.
My Prettier configuration files
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
| { | |
| "useTabs": true, | |
| "tabWidth": 4, | |
| "singleQuote": true, | |
| "printWidth": 100 | |
| } |
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
| { | |
| "useTabs": true, | |
| "tabWidth": 2, | |
| "printWidth": 100, | |
| "singleQuote": true, | |
| "trailingComma": "es5", | |
| "bracketSpacing": true, | |
| "parenSpacing": true, | |
| "jsxBracketSameLine": false, | |
| "semi": true, | |
| "arrowParens": "avoid" | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Change Log
endOfLinesetting - Default value changed fromautotolfin v2.0.0trailingCommasetting - Default value changed fromnonetoes5` in v2.0.0