Skip to content

Commit

Permalink
tkb
Browse files Browse the repository at this point in the history
  • Loading branch information
mayank1513 committed Feb 23, 2024
1 parent 9dd656e commit 03e2a18
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 25 deletions.
54 changes: 54 additions & 0 deletions .tkb
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"scope": "Workspace",
"tasks": {
"task-ZJpp-dpxx3KxRMsAPNuMC": {
"id": "task-ZJpp-dpxx3KxRMsAPNuMC",
"description": "Implement tests",
"columnId": "column-done"
},
"4CTOhRPjKrEAW5AHYsV7P": {
"id": "4CTOhRPjKrEAW5AHYsV7P",
"description": "Update doc comments",
"columnId": "column-done"
},
"RtA7NBfPOlfnVHqk54rMD": {
"id": "RtA7NBfPOlfnVHqk54rMD",
"description": "update readme",
"columnId": "column-todo"
},
"fqhes_YS14GQopOUs7K-7": {
"id": "fqhes_YS14GQopOUs7K-7",
"description": "update workflows to replace mayank1513",
"columnId": "column-todo"
},
"-FlzW8htLo-6jz5-ZqjEx": {
"id": "-FlzW8htLo-6jz5-ZqjEx",
"description": "update examples to showcase edge cases",
"columnId": "column-todo"
}
},
"columns": [
{
"id": "column-todo",
"title": "To do",
"tasksIds": [
"RtA7NBfPOlfnVHqk54rMD",
"fqhes_YS14GQopOUs7K-7",
"-FlzW8htLo-6jz5-ZqjEx"
]
},
{
"id": "column-doing",
"title": "Doing",
"tasksIds": []
},
{
"id": "column-done",
"title": "Done",
"tasksIds": [
"task-ZJpp-dpxx3KxRMsAPNuMC",
"4CTOhRPjKrEAW5AHYsV7P"
]
}
]
}
51 changes: 26 additions & 25 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,32 @@
{
// Formatting using Prettier by default for all languages
"editor.defaultFormatter": "esbenp.prettier-vscode",
// Formatting using Prettier for JavaScript, overrides VSCode default.
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// Formatting using Prettier by default for all languages
"editor.defaultFormatter": "esbenp.prettier-vscode",
// Formatting using Prettier for JavaScript, overrides VSCode default.
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},

// Ensure enough terminal history is preserved when running tests.
"terminal.integrated.scrollback": 10000,
// Ensure enough terminal history is preserved when running tests.
"terminal.integrated.scrollback": 10000,

// Configure todo-tree to exclude node_modules, dist, and compiled.
"todo-tree.filtering.excludeGlobs": ["**/node_modules", "**/dist", "**/compiled"],
// Match TODO-APP in addition to other TODOs.
"todo-tree.general.tags": ["BUG", "HACK", "FIXME", "TODO", "XXX", "[ ]", "[x]", "TODO-APP"],
// Configure todo-tree to exclude node_modules, dist, and compiled.
"todo-tree.filtering.excludeGlobs": ["**/node_modules", "**/dist", "**/compiled"],
// Match TODO-APP in addition to other TODOs.
"todo-tree.general.tags": ["BUG", "HACK", "FIXME", "TODO", "XXX", "[ ]", "[x]", "TODO-APP"],

// Disable TypeScript surveys.
"typescript.surveys.enabled": false,
// Disable TypeScript surveys.
"typescript.surveys.enabled": false,

"grammarly.selectors": [
{
"language": "markdown",
"scheme": "file"
}
],
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnSaveMode": "file"
"grammarly.selectors": [
{
"language": "markdown",
"scheme": "file"
}
],
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnSaveMode": "file",
"mayank1513.trello-kanban.Workspace.filePath": ".tkb"
}

0 comments on commit 03e2a18

Please sign in to comment.