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

Unified Diff: lib/src/rules.dart

Issue 1767843002: Lint for `@mustCallSuper` (#194). (Closed) Base URL: https://github.com/dart-lang/linter.git@master
Patch Set: Created 4 years, 10 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/must_call_super.dart » ('j') | no next file with comments »
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 7f18028470d41a2c7fa6a0504c6d26de92ae9c8d..097c12da5a5ddb0725d537b7e3b9a801716198ff 100644
--- a/lib/src/rules.dart
+++ b/lib/src/rules.dart
@@ -22,6 +22,7 @@ import 'package:linter/src/rules/hash_and_equals.dart';
import 'package:linter/src/rules/implementation_imports.dart';
import 'package:linter/src/rules/library_names.dart';
import 'package:linter/src/rules/library_prefixes.dart';
+import 'package:linter/src/rules/must_call_super.dart';
import 'package:linter/src/rules/non_constant_identifier_names.dart';
import 'package:linter/src/rules/one_member_abstracts.dart';
import 'package:linter/src/rules/package_api_docs.dart';
@@ -52,6 +53,7 @@ final Registry ruleRegistry = new Registry()
..register(new HashAndEquals())
..register(new ImplementationImports())
..register(new LibraryNames())
+ ..register(new MustCallSuper())
..register(new LibraryPrefixes())
..register(new NonConstantIdentifierNames())
..register(new PreferIsNotEmpty())
« no previous file with comments | « no previous file | lib/src/rules/must_call_super.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698