microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
.vscode/settings.json
19lines · modeblame
9cf5eef2leolee10 years ago | 1 | // Place your settings in this file to overwrite default and user settings. |
| 2 | { | |
259c018fYuri Skorokhodov5 years ago | 3 | "javascript.validate.enable": false, |
| 4 | "editor.formatOnSave": true, | |
| 5 | "files.trimTrailingWhitespace": true, | |
| 6 | "eslint.enable": 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.tsdk": "./node_modules/typescript/lib" | |
678db279Artem Egorov8 years ago | 19 | } |