Created
March 23, 2018 22:10
-
-
Save mickambar19/253b38d460afe3080b9c325652c3796c to your computer and use it in GitHub Desktop.
Prettier config to be standard js for vscode
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": true, | |
"eslintIntegration": false, | |
"jsxBracketSameLine": false, | |
"printWidth": 80, | |
"requireConfig": false, | |
"stylelintIntegration": false, | |
"useTabs": false, | |
"tabWidth": 2, | |
"trailingComma": "none", | |
"semi": false, | |
"singleQuote": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment