Kevin Moore
Kevin Moore
_From @kevmoo on March 7, 2013 0:47_ Does library W import library X, but never uses code from X? Does package Y define package Z as a dependency, but never...
If a dependency is used in bin/lib it MUST be a non-dev dependency If a dependency is not used in bin/lib it SHOULD be a dev dependency
## avoid_library_directive ## Description The library directive at the top of...libraries...is generally superfluous – UNLESS it's used to "anchor" a doc comment or an annotation (see https://github.com/dart-lang/linter/issues/3687). The use of...
See https://github.com/dart-lang/build/ You can define a builder that takes in a `. glsl` file and emits a Dart file. You get watch for free, plus pretty smart incremental builds, etc....
Github is redirecting from zynga.github.com
See https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderConfig So instead of adding https://www.googleapis.com/oauth2/v3/certs I should be able to add https://accounts.google.com/.well-known/openid-configuration which references the above via the `jwks_uri` entry
Running `flutter build web --release` at ~HEAD > Expected to find fonts for (MaterialIcons, packages/cupertino_icons/CupertinoIcons), but found (MaterialIcons). This usually means you are referring to font families in an IconData...
```dart const SelectableText.rich( TextSpan( children: [ TextSpan( text: siteTitle, style: TextStyle(fontWeight: FontWeight.bold), ), TextSpan(text: _intro), TextSpan(text: '\n\n'), TextSpan( text: _cya, style: TextStyle(fontStyle: FontStyle.italic), ), ], ), ) ``` Renders as...
Reproduction: clone, `dart pub get`, `dart test -p chrome --compiler dart2wasm` - [x] pkg:crypto - almost all tests fail due to time outs - [x] Waiting for dev SDK to...