diff --git a/.vscode/settings.json b/.vscode/settings.json index 9e614ef0773..83e9f1fe514 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,4 +2,7 @@ // Set current working directory to devtools_app. "terminal.integrated.cwd": "packages/devtools_app", "dart.showTodos": false, + "dart.analysisExcludedFolders": [ + "tool/flutter-sdk" + ] } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index fe8f84261be..4102e21eec7 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -5,7 +5,7 @@ "label": "Start DTD on Port 8500", "detail": "Starts a DTD instance running on port 8500", "type": "shell", - "command": "${workspaceFolder}/../tool/flutter-sdk/bin/cache/dart-sdk/bin/dart", + "command": "${workspaceFolder}/tool/flutter-sdk/bin/cache/dart-sdk/bin/dart", "args": [ "tooling-daemon", "--disable-service-auth-codes", diff --git a/packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md b/packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md index a4873ad1d8c..5e4353dd692 100644 --- a/packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md +++ b/packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md @@ -15,7 +15,7 @@ To learn more about DevTools, check out the ## General updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Inspector updates @@ -24,11 +24,11 @@ TODO: Remove this section if there are not any general updates. ## Performance updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## CPU profiler updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Memory updates @@ -37,19 +37,19 @@ TODO: Remove this section if there are not any general updates. ## Debugger updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Network profiler updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Logging updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## App size tool updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Deep links tool updates @@ -61,15 +61,15 @@ TODO: Remove this section if there are not any general updates. ## VS Code Sidebar updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## DevTools Extension updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Advanced developer mode updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Full commit history diff --git a/packages/devtools_app/release_notes/helpers/release_notes_template.md b/packages/devtools_app/release_notes/helpers/release_notes_template.md index afc1b1521ef..63b30344eac 100644 --- a/packages/devtools_app/release_notes/helpers/release_notes_template.md +++ b/packages/devtools_app/release_notes/helpers/release_notes_template.md @@ -15,55 +15,55 @@ To learn more about DevTools, check out the ## General updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Inspector updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Performance updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## CPU profiler updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Memory updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Debugger updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Network profiler updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Logging updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## App size tool updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Deep links tool updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## VS Code Sidebar updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## DevTools Extension updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Advanced developer mode updates -TODO: Remove this section if there are not any general updates. +TODO: Remove this section if there are not any updates. ## Full commit history diff --git a/tool/lib/commands/release_notes_helper.dart b/tool/lib/commands/release_notes_helper.dart index 0f8e4713d56..5c720871558 100644 --- a/tool/lib/commands/release_notes_helper.dart +++ b/tool/lib/commands/release_notes_helper.dart @@ -208,7 +208,7 @@ class _DevToolsReleaseNotes { // TODO(kenz): one nice polish task could be to remove sections that are // empty (i.e. sections that have the line - // "TODO: Remove this section if there are not any general updates."). + // "TODO: Remove this section if there are not any updates."). final srcLines = rawLines.sublist(titleLineIndex); final imageLineIndices = {}; for (int i = 0; i < srcLines.length; i++) {