Danny Tuppeny
Danny Tuppeny
If I run `npm install -g @sourcegraph/src` I get the following output: ``` PS C:\Dev\Sourcegraph\cody> npm install -g @sourcegraph/src npm ERR! code 1 npm ERR! path C:\Users\danny\AppData\Roaming\npm\node_modules\@sourcegraph\src npm ERR! command...
While investigating https://github.com/Dart-Code/Dart-Code/issues/5027 I tried connecting DevTools to a web app to see if I could repro the issue outside of VS Code. When I did, I got this error...
See https://github.com/dart-lang/sdk/issues/54692#issuecomment-1904547121 - the GC events being shown are reported as `ms` but are apparently microseconds, not milliseconds.
I noticed when I change the size of my browser window, the CPU flame chart timings seem to scale differently to the data. I originally had the window taking up...
Originally raised at https://github.com/Dart-Code/Dart-Code/issues/4922 by @vatlnetwork. The following code triggers `prefer_const_literals_to_create_immutables`: ```dart import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; class TopBar { AppBar appBar(BuildContext context) { return AppBar( actions: [ if (kIsWeb) _button(context),...
proposal: Lint to forbid Uri.file(), Uri.toFilePath(), package:path/... without `windows` arguments
I don't know what a good name for this lint would be, but here's the problem... Using the `Uri.file()` constructor or `Uri.toFilePath()` instance method (and I suspect a number of...
This isn't loading today, not sure what changed yet. 
Seems we don't have an issue tracking this. We should support running "dart fix" for your workspace in the IDE, rather than telling users to run from the command line.
VS Code has first-class actions for running in Debug and "noDebug" modes. Our current distinction is: - Run - does not connect the debug adapter to the VM Service -...
With https://github.com/Dart-Code/Dart-Code/issues/5022, we support fixing all issues across a workspace. It'd be nice to also support this on a folder (or package), which could be triggered from the explorer context...