generated from react18-tools/turborepo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
9dd656e
commit 03e2a18
Showing
2 changed files
with
80 additions
and
25 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,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" | ||
] | ||
} | ||
] | ||
} |
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,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" | ||
} |