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

Unified Diff: lib/src/rules.dart

Issue 2189993002: Remove `whitespace_around_ops` pending re-name and re-design (#249). (Closed) Base URL: https://github.com/dart-lang/linter.git@master
Patch Set: Created 4 years, 5 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 | « CHANGELOG.md ('k') | lib/src/rules/whitespace_around_ops.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 e36524a631fd668973979808ffed262a1ec5d51b..3496252aaaa71aa29d9808e21cc97aaefd52c4ef 100644
--- a/lib/src/rules.dart
+++ b/lib/src/rules.dart
@@ -53,7 +53,6 @@ import 'package:linter/src/rules/unnecessary_brace_in_string_interp.dart';
import 'package:linter/src/rules/unnecessary_getters_setters.dart';
import 'package:linter/src/rules/unrelated_type_equality_checks.dart';
import 'package:linter/src/rules/valid_regexps.dart';
-import 'package:linter/src/rules/whitespace_around_ops.dart';
final Registry ruleRegistry = new Registry()
..register(new AlwaysDeclareReturnTypes())
@@ -102,8 +101,7 @@ final Registry ruleRegistry = new Registry()
//..register(new UnnecessaryGetters())
..register(new UnnecessaryGettersSetters())
..register(new UnrelatedTypeEqualityChecks())
- ..register(new ValidRegExps())
- ..register(new WhitespaceAroundOps());
+ ..register(new ValidRegExps());
/// Registry of contributed lint rules.
class Registry extends Object with IterableMixin<LintRule> {
« no previous file with comments | « CHANGELOG.md ('k') | lib/src/rules/whitespace_around_ops.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698