Created
November 17, 2022 07:55
-
-
Save glenhoooo/5fabab1c376e22105b7d9166754b0b38 to your computer and use it in GitHub Desktop.
prettierrc for web develop
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
| { | |
| "endOfLine": "auto", | |
| "printWidth": 120, | |
| "tabWidth": 2, | |
| "singleQuote": false, | |
| "useTabs": false, | |
| "semi": true, | |
| "trailingComma": "es5", | |
| "bracketSpacing": true, | |
| "jsxBracketSameLine": false, | |
| "arrowParens": "avoid", | |
| "overrides": [ | |
| { | |
| "files": ".prettierrc", | |
| "options": { "parser": "json", "trailingComma": "none" } | |
| }, | |
| { | |
| "files": "*.json", | |
| "options": { "tabWidth": 2, "trailingComma": "none" } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment