Created
January 26, 2025 12:24
-
-
Save MewX/9292993b9b77caeb449687957e4ef159 to your computer and use it in GitHub Desktop.
Prettier on vscode on IDX
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
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"prettier.configPath": ".prettierrc", | |
"prettier.documentSelectors": [ | |
"**/*.json", | |
"**/*.jsonc", | |
"**/*.js", | |
"**/*.jsx", | |
"**/*.ts", | |
"**/*.tsx", | |
"**/*.css", | |
"**/*.scss", | |
"**/*.html" | |
], | |
"prettier.prettierPath": "./node_modules/prettier", | |
"prettier.requireConfig": true, | |
"prettier.tabWidth": 2, | |
"prettier.useTabs": false, | |
"prettier.semi": true, | |
"prettier.singleQuote": false, | |
"prettier.trailingComma": "none" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment