microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
4bb0956ede5635069acf360dcc9c791802048661

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.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