From ea28c8a437cddd0c2cb69809a23f1f9a0ceba0dc Mon Sep 17 00:00:00 2001 From: Dan Date: Mon, 28 May 2018 14:11:23 -0230 Subject: Replaces currency-input.js with NumericInput --- .eslintrc | 1 + 1 file changed, 1 insertion(+) (limited to '.eslintrc') diff --git a/.eslintrc b/.eslintrc index 511d6f216..b49a7a28a 100644 --- a/.eslintrc +++ b/.eslintrc @@ -142,6 +142,7 @@ "operator-linebreak": [1, "after", { "overrides": { "?": "ignore", ":": "ignore" } }], "padded-blocks": "off", "quotes": [2, "single", {"avoidEscape": true, "allowTemplateLiterals": true}], + "react/no-deprecated": 0, "semi": [2, "never"], "semi-spacing": [2, { "before": false, "after": true }], "space-before-blocks": [1, "always"], -- cgit v1.2.3 From 61fcec78f831da070a47981b890c644ea75c044d Mon Sep 17 00:00:00 2001 From: brunobar79 Date: Mon, 2 Jul 2018 18:35:30 -0400 Subject: update eslint rules and paths --- .eslintrc | 1 + 1 file changed, 1 insertion(+) (limited to '.eslintrc') diff --git a/.eslintrc b/.eslintrc index b49a7a28a..06046c72c 100644 --- a/.eslintrc +++ b/.eslintrc @@ -159,5 +159,6 @@ "yield-star-spacing": [2, "both"], "yoda": [2, "never"], "prefer-const": 1, + "mocha/no-exclusive-tests": "error" } } -- cgit v1.2.3 From 0fad48592cb7eac41b301f7cfc7a858286731ae5 Mon Sep 17 00:00:00 2001 From: brunobar79 Date: Mon, 2 Jul 2018 18:49:49 -0400 Subject: add $ to globals --- .eslintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.eslintrc') diff --git a/.eslintrc b/.eslintrc index 06046c72c..43af91bd2 100644 --- a/.eslintrc +++ b/.eslintrc @@ -37,7 +37,8 @@ "document": false, "navigator": false, "web3": true, - "window": false + "window": false, + "$": false }, "rules": { -- cgit v1.2.3 From 8c032323a23b4f0f8f5cbec6c442ee374009f4e5 Mon Sep 17 00:00:00 2001 From: brunobar79 Date: Mon, 2 Jul 2018 19:37:21 -0400 Subject: add QUnit to eslint globals --- .eslintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.eslintrc') diff --git a/.eslintrc b/.eslintrc index 43af91bd2..1317864d1 100644 --- a/.eslintrc +++ b/.eslintrc @@ -38,7 +38,8 @@ "navigator": false, "web3": true, "window": false, - "$": false + "$": false, + "QUnit": false }, "rules": { -- cgit v1.2.3