diff --git a/import/asana/.vscode/launch.json b/import/asana/.vscode/launch.json new file mode 100644 index 000000000..7f21c6c82 --- /dev/null +++ b/import/asana/.vscode/launch.json @@ -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 + } + ] +} \ No newline at end of file diff --git a/import/asana/.vscode/settings.json b/import/asana/.vscode/settings.json new file mode 100644 index 000000000..dbc3c7246 --- /dev/null +++ b/import/asana/.vscode/settings.json @@ -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 +} diff --git a/import/trello/.vscode/launch.json b/import/trello/.vscode/launch.json new file mode 100644 index 000000000..7f21c6c82 --- /dev/null +++ b/import/trello/.vscode/launch.json @@ -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 + } + ] +} \ No newline at end of file diff --git a/import/trello/.vscode/settings.json b/import/trello/.vscode/settings.json new file mode 100644 index 000000000..dbc3c7246 --- /dev/null +++ b/import/trello/.vscode/settings.json @@ -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 +}