-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Lint to ensure identifiers referenced in docs are in-scope. #57330
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
devexp-linter
Issues with the analyzer's support for the linter package
legacy-area-analyzer
Use area-devexp instead.
linter-lint-request
type-enhancement
A request for a change that isn't a bug
Comments
pq
referenced
this issue
in dart-archive/linter
May 13, 2016
Implemented w/ dart-archive/linter@1659848. |
pq
referenced
this issue
in dart-archive/linter
May 18, 2016
Introduces: * Fix to `public_member_api_docs` to check for documented getters when checking setters (#237). * New `iterable_contains_unrelated_type` lint to detect when `Iterable.contains` is invoked with an object of an unrelated type. * New `comment_references` lint to ensure identifiers referenced in docs are in scope (#240). BUG= [email protected] Review URL: https://codereview.chromium.org//1992693003 .
pq
referenced
this issue
in pq/flutter
May 18, 2016
Notably, this will allow us to play with * the fixed `public_member_api_docs` that now checks for documented getters when checking setters (https://github.com/dart-lang/linter/issues/237), and * the new `comment_references` lint that ensures identifiers referenced in docs are in scope (https://github.com/dart-lang/linter/issues/240).
pq
referenced
this issue
in pq/flutter
May 18, 2016
Notably, this will allow us to play with * the fixed `public_member_api_docs` that now checks for documented getters when checking setters (https://github.com/dart-lang/linter/issues/237), and * the new `comment_references` lint that ensures identifiers referenced in docs are in scope (https://github.com/dart-lang/linter/issues/240).
pq
referenced
this issue
in pq/flutter
May 19, 2016
Quick pass at fixing a few dangling references as revealed by the new `comment_references` lint (https://github.com/dart-lang/linter/issues/240). There's a bunch more to do here before we can turn it on by default (~430 lints as of now). Many of them are a simple matter of adding an import (e.g., `dart:async` for library docs that reference `Future`) but others will require a bit of thought. Probably best done by the folks writing the code. :)
stuartmorgan-g
referenced
this issue
in stuartmorgan-g/packages
Apr 30, 2021
Quick pass at fixing a few dangling references as revealed by the new `comment_references` lint (https://github.com/dart-lang/linter/issues/240). There's a bunch more to do here before we can turn it on by default (~430 lints as of now). Many of them are a simple matter of adding an import (e.g., `dart:async` for library docs that reference `Future`) but others will require a bit of thought. Probably best done by the folks writing the code. :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
devexp-linter
Issues with the analyzer's support for the linter package
legacy-area-analyzer
Use area-devexp instead.
linter-lint-request
type-enhancement
A request for a change that isn't a bug
Picking up from #26158 (Analyzer should catch dangling [Foo] references in dartdocs). After some discussion we agreed that this would best be suited as a lint.
The text was updated successfully, but these errors were encountered: