microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1.9.1

Branches

Tags

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

Clone

HTTPS

Download ZIP

.vscode/settings.json

21lines · modecode

1// Place your settings in this file to overwrite default and user settings.
2{
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
16 },
17 "[typescript]": {
18 "editor.defaultFormatter": "esbenp.prettier-vscode"
19 },
20 "typescript.tsdk": "./node_modules/typescript/lib"
21}
22