Created
November 25, 2018 16:54
-
-
Save mtheoryx/3a90ee30cf6bcbff65430b5a29faae1a to your computer and use it in GitHub Desktop.
Configure your own custom prettier rules
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": "avoid", | |
| "bracketSpacing": false, | |
| "htmlWhitespaceSensitivity": "css", | |
| "insertPragma": false, | |
| "jsxBracketSameLine": true, | |
| "jsxSingleQuote": false, | |
| "parser": "babylon", | |
| "printWidth": 80, | |
| "proseWrap": "always", | |
| "requirePragma": false, | |
| "semi": false, | |
| "singleQuote": true, | |
| "tabWidth": 2, | |
| "trailingComma": "all", | |
| "useTabs": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment