Jonas Finnemann Jensen
Jonas Finnemann Jensen
We also discussed `install.md` in https://github.com/dart-lang/pub-dev/issues/2125.
As briefly discussed in https://github.com/dart-lang/pub-dev/issues/3008 another option is to remove the "installation" instructions completely. Arguments for removal is that if installation instructions are important to your package, it's probably best...
@akabisdev can you share a minimal reproducible example? If you have a key that works with `window.crypto.subtle.importKey` in the browser, but doesn't work in with `RsaOaepPublicKey.importSpkiKey` I think we'd be...
If we ran tests I think this would make sense, but without running tests it's just a vanity thing (as we can't tell how fresh the results are). Don't get...
I do think it's fair to argue that methods/properties/operators inherited from `Object` could be particularly uninteresting, speaking about: * `hashCode` * `operator ==` * `toString` * `noSuchMethod` * `runtimeType` When...
I think this is and should be outside the scope of `dartdoc`, but that we could facilitate packages to provide things like this. Some options that could alleviate these problems...
I suspect `showUndocumentedCategories: true` just causes categories for which no markdown file exists to be included in the list of categories. I don't think there is an option to include...
See also https://github.com/dart-lang/dartdoc/issues/4012, which is probably the same use case.
I did a bit of investigation, we have a test case covering the current behavior: https://github.com/dart-lang/dartdoc/blob/95f4208e094a2832dd29a9591d9b95ddf6632174/test/options_test.dart#L407-L439 Introduced in: https://github.com/dart-lang/dartdoc/pull/2965 I can see the argument that categories shouldn't be used for...
Currently, `categories` is a thing in `dartdoc_options.yaml`, but they end up as "Topics" in the generated output. Maybe, instead of having `categories` in `dartdoc_options.yaml`, we should make something like: ```yaml...