Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Unified Diff: lib/src/rules.dart

Issue 1978603003: Lint to detect dangling identifiers in docs (#240). (Closed) Base URL: https://github.com/dart-lang/linter.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/src/rules/comment_references.dart » ('j') | lib/src/rules/comment_references.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/rules.dart
diff --git a/lib/src/rules.dart b/lib/src/rules.dart
index 44cef7012db98d1e041229693b8d0ce4cf8e76cc..9ba7acf8b295bb5665bba7986b1f589a7d6e2b6d 100644
--- a/lib/src/rules.dart
+++ b/lib/src/rules.dart
@@ -17,6 +17,7 @@ import 'package:linter/src/rules/avoid_init_to_null.dart';
import 'package:linter/src/rules/avoid_return_types_on_setters.dart';
import 'package:linter/src/rules/await_only_futures.dart';
import 'package:linter/src/rules/camel_case_types.dart';
+import 'package:linter/src/rules/comment_references.dart';
import 'package:linter/src/rules/constant_identifier_names.dart';
import 'package:linter/src/rules/control_flow_in_finally.dart';
import 'package:linter/src/rules/empty_constructor_bodies.dart';
@@ -54,6 +55,7 @@ final Registry ruleRegistry = new Registry()
..register(new AvoidInitToNull())
..register(new AwaitOnlyFutures())
..register(new CamelCaseTypes())
+ ..register(new CommentReferences())
..register(new ConstantIdentifierNames())
..register(new UnrelatedTypeEqualityChecks())
..register(new EmptyConstructorBodies())
« no previous file with comments | « no previous file | lib/src/rules/comment_references.dart » ('j') | lib/src/rules/comment_references.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698