microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
.vscode/settings.json
29lines · modeblame
9cf5eef2leolee10 years ago | 1 | // Place your settings in this file to overwrite default and user settings. |
| 2 | { | |
4d14f563Yuri Skorokhodov5 years ago | 3 | "javascript.validate.enable": false, |
| 4 | "editor.formatOnSaveMode": "modifications", | |
| 5 | "files.trimTrailingWhitespace": true, | |
| 6 | "editor.insertSpaces": true, | |
| 7 | "editor.tabSize": 4, | |
| 8 | "files.exclude": { | |
| 9 | // "**/node_modules": true, | |
| 10 | "nls.*.json": true, | |
| 11 | "**/*.js": { | |
| 12 | "when": "$(basename).ts" | |
| 13 | }, | |
| 14 | // "**/out": true, | |
| 15 | "**/*.js.map": true | |
259c018fYuri Skorokhodov5 years ago | 16 | }, |
4d14f563Yuri Skorokhodov5 years ago | 17 | "[typescript]": { |
a41b2c15Ezio Li3 years ago | 18 | // Need to install extension 'esbenp.prettier-vscode' |
| 19 | //"editor.defaultFormatter": "esbenp.prettier-vscode", | |
| 20 | "editor.defaultFormatter": "vscode.typescript-language-features" | |
4d14f563Yuri Skorokhodov5 years ago | 21 | }, |
495c23d6Ezio Li4 years ago | 22 | // "gulp.autoDetect": "on", |
4d14f563Yuri Skorokhodov5 years ago | 23 | "typescript.tsdk": "./node_modules/typescript/lib" |
6ad97b7av-zhenyuan7 months ago | 24 | , |
| 25 | "react-native-tools.logHighlight.enabled": true, | |
| 26 | "files.associations": { | |
| 27 | "*.rn-output": "rn-output-log" | |
| 28 | } | |
678db279Artem Egorov9 years ago | 29 | } |