microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
.vscode/settings.json
22lines · modecode
| 1 | // Place your settings in this file to overwrite default and user settings. |
| 2 | { |
| 3 | "javascript.validate.enable": false, |
| 4 | "editor.formatOnSave": true, |
| 5 | "editor.formatOnSaveMode": "modifications", |
| 6 | "files.trimTrailingWhitespace": true, |
| 7 | "editor.insertSpaces": true, |
| 8 | "editor.tabSize": 4, |
| 9 | "files.exclude": { |
| 10 | // "**/node_modules": true, |
| 11 | "nls.*.json": true, |
| 12 | "**/*.js": { |
| 13 | "when": "$(basename).ts" |
| 14 | }, |
| 15 | // "**/out": true, |
| 16 | "**/*.js.map": true |
| 17 | }, |
| 18 | "[typescript]": { |
| 19 | "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 20 | }, |
| 21 | "typescript.tsdk": "./node_modules/typescript/lib" |
| 22 | } |
| 23 | |