Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: qunit/common.js

Issue 29374674: Issue 4864 - Start using ESLint for adblockpluschrome (Closed)
Patch Set: Update adblockplusui dependency to include the notification fix Created March 19, 2017, 6:48 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « qunit/.eslintrc.json ('k') | qunit/tests/cssEscaping.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: qunit/common.js
diff --git a/qunit/common.js b/qunit/common.js
index 906348ce243b91729a5067c9dcfe1c47627fc0b4..e39caded875cb7588b57d0d8606a3f8ba57a8170 100644
--- a/qunit/common.js
+++ b/qunit/common.js
@@ -17,14 +17,12 @@
"use strict";
-importAll("filterClasses", this);
-importAll("subscriptionClasses", this);
-importAll("matcher", this);
-importAll("filterStorage", this);
-importAll("filterNotifier", this);
-importAll("elemHide", this);
-importAll("prefs", this);
-importAll("utils", this);
+const {FilterStorage} = require("filterStorage");
+const {Subscription} = require("subscriptionClasses");
+const {Filter} = require("filterClasses");
+const {defaultMatcher} = require("matcher");
+const {ElemHide} = require("elemHide");
+const {Prefs} = require("prefs");
function prepareFilterComponents(keepListeners)
{
« no previous file with comments | « qunit/.eslintrc.json ('k') | qunit/tests/cssEscaping.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld