Importer .vscode settings

This commit is contained in:
Chen-I Lim 2021-02-22 10:57:55 -08:00
parent 4896b6f649
commit 32cd2096b3
4 changed files with 108 additions and 0 deletions

25
import/asana/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,25 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug test",
"runtimeExecutable": "npm",
"windows": {
"runtimeExecutable": "npm.cmd"
},
"runtimeArgs": [
"run-script",
"debug:test"
],
"cwd": "${workspaceRoot}",
"outFiles": [],
"port": 5858,
"sourceMaps": true
}
]
}

29
import/asana/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,29 @@
{
// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
"editor.tabSize": 4,
// Controls if the editor will insert spaces for tabs. Accepted values: "auto", true, false. If set to "auto", the value will be guessed when a file is opened.
"editor.insertSpaces": true,
"eslint.validate": [
"typescript",
"typescriptreact"
],
"files.exclude": {
".vscode": true,
"**/__snapshots__": true,
"**/node_modules": true,
},
"search.exclude": {
"**/__snapshots__": true,
"**/node_modules": true,
},
"editor.codeActionsOnSave": {
// "source.organizeImports": true,
"source.fixAll.eslint": true,
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
// "source.organizeImports": true,
},
},
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false
}

25
import/trello/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,25 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug test",
"runtimeExecutable": "npm",
"windows": {
"runtimeExecutable": "npm.cmd"
},
"runtimeArgs": [
"run-script",
"debug:test"
],
"cwd": "${workspaceRoot}",
"outFiles": [],
"port": 5858,
"sourceMaps": true
}
]
}

29
import/trello/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,29 @@
{
// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
"editor.tabSize": 4,
// Controls if the editor will insert spaces for tabs. Accepted values: "auto", true, false. If set to "auto", the value will be guessed when a file is opened.
"editor.insertSpaces": true,
"eslint.validate": [
"typescript",
"typescriptreact"
],
"files.exclude": {
".vscode": true,
"**/__snapshots__": true,
"**/node_modules": true,
},
"search.exclude": {
"**/__snapshots__": true,
"**/node_modules": true,
},
"editor.codeActionsOnSave": {
// "source.organizeImports": true,
"source.fixAll.eslint": true,
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
// "source.organizeImports": true,
},
},
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false
}