-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4be7af
commit 3ca497e
Showing
3 changed files
with
108 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
{ | ||
"scope": "Workspace", | ||
"tasks": { | ||
"uUjYvxGR0oOu3Q1iJQler": { | ||
"id": "uUjYvxGR0oOu3Q1iJQler", | ||
"description": "Add use case for r18gs", | ||
"columnId": "column-todo" | ||
}, | ||
"hnmDBbQK5q6-GX3eIdtUP": { | ||
"id": "hnmDBbQK5q6-GX3eIdtUP", | ||
"description": "Create/feature a list of projects created from this template", | ||
"columnId": "column-done" | ||
}, | ||
"5FPnfgSKUpHBbORBRtgui": { | ||
"id": "5FPnfgSKUpHBbORBRtgui", | ||
"description": "Optimise mobile view", | ||
"columnId": "column-doing" | ||
}, | ||
"iXE3kCY0L1r_4TD-zRgVh": { | ||
"id": "iXE3kCY0L1r_4TD-zRgVh", | ||
"description": "React Loaders\n- improve step by step --- incremental improvements\n- Purposes\n - Provide a good demo - demonstrating the full potential of the setup\n - Give learners opportunity to contribute to open source", | ||
"columnId": "column-doing" | ||
}, | ||
"jxGpRnHuqpR8FMho_53Je": { | ||
"id": "jxGpRnHuqpR8FMho_53Je", | ||
"description": "Choose a name for the new library\n- react18-loaders", | ||
"columnId": "column-done" | ||
}, | ||
"W5ouBV1q2_FExuUzGV0aP": { | ||
"id": "W5ouBV1q2_FExuUzGV0aP", | ||
"description": "Update description\n", | ||
"columnId": "column-done" | ||
}, | ||
"rRkFSIcteEvuq6MRX2BN0": { | ||
"id": "rRkFSIcteEvuq6MRX2BN0", | ||
"description": "Create 2 - 3 loaders", | ||
"columnId": "column-rHWkySHomUOsd93fyS05p" | ||
}, | ||
"aRVjexKyP1sX5zxvp7pdz": { | ||
"id": "aRVjexKyP1sX5zxvp7pdz", | ||
"description": "exports -- in package.json", | ||
"columnId": "column-rHWkySHomUOsd93fyS05p" | ||
}, | ||
"5Br6CU2MKWj0R40obK9Nm": { | ||
"id": "5Br6CU2MKWj0R40obK9Nm", | ||
"description": "ADD CRM form - e.g. to report code of conduct violations", | ||
"columnId": "column-rHWkySHomUOsd93fyS05p" | ||
} | ||
}, | ||
"columns": [ | ||
{ | ||
"id": "column-rHWkySHomUOsd93fyS05p", | ||
"title": "To do ", | ||
"tasksIds": [ | ||
"rRkFSIcteEvuq6MRX2BN0", | ||
"aRVjexKyP1sX5zxvp7pdz", | ||
"5Br6CU2MKWj0R40obK9Nm" | ||
] | ||
}, | ||
{ | ||
"id": "column-doing", | ||
"title": "Doing", | ||
"tasksIds": [ | ||
"iXE3kCY0L1r_4TD-zRgVh", | ||
"5FPnfgSKUpHBbORBRtgui" | ||
] | ||
}, | ||
{ | ||
"id": "column-done", | ||
"title": "Done", | ||
"tasksIds": [ | ||
"W5ouBV1q2_FExuUzGV0aP", | ||
"jxGpRnHuqpR8FMho_53Je", | ||
"hnmDBbQK5q6-GX3eIdtUP" | ||
] | ||
}, | ||
{ | ||
"id": "column-S6UGsrZqn5uTUGxNq5qGJ", | ||
"title": "Will not do", | ||
"tasksIds": [] | ||
}, | ||
{ | ||
"id": "column-todo", | ||
"title": "Archive", | ||
"tasksIds": [ | ||
"uUjYvxGR0oOu3Q1iJQler" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["esbenp.prettier-vscode", "mayank1513.trello-kanban-task-board"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
{ | ||
"eslint.workingDirectories": [ | ||
{ | ||
"mode": "auto" | ||
} | ||
] | ||
// Formatting using Prettier by default for all languages | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
|
||
// Ensure enough terminal history is preserved when running tests. | ||
"terminal.integrated.scrollback": 10000, | ||
|
||
// Disable TypeScript surveys. | ||
"typescript.surveys.enabled": false, | ||
|
||
"editor.tabSize": 2, | ||
"editor.wordWrap": "on", | ||
"editor.formatOnSave": true, | ||
"editor.formatOnPaste": true, | ||
"editor.formatOnSaveMode": "file", | ||
"mayank1513.trello-kanban.Workspace.filePath": ".tkb" | ||
} |