{ // Forward slashes on purpose: VS Code accepts them on Windows and they avoid // the JSON backslash-escaping trap. "dart.flutterSdkPath": "C:/src/flutter", // Format and fix imports on save; `dart format` is enforced by tool/verify.ps1 // anyway, so catching it here avoids a failed verification later. "[dart]": { "editor.formatOnSave": true, "editor.rulers": [80], "editor.selectionHighlight": false, "editor.tabCompletion": "onlySnippets", "editor.wordBasedSuggestions": "off" }, // Generated from lib/l10n/*.arb during pub get, and git-ignored. "dart.analysisExcludedFolders": ["app/build", "app/.dart_tool"], "files.exclude": { "**/.dart_tool": true, "**/build": true, "**/.gradle": true }, // Radar frames are binary and numerous; keeping them out of search results // makes finding code faster. "search.exclude": { "**/app/assets/mock/frames": true, "**/app/lib/l10n/app_localizations*.dart": true } }