From 65c5cfd4dc826fb28d6a0047ee0837936afcadbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 20 Aug 2019 22:18:04 +0200 Subject: [PATCH] lint: Disable eqeqeq in legacy configuration Using type-safe comparisons is a good idea, but after not doing so for a decade, there's too much existing code around for flipping the switch right away. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/818 --- lint/eslintrc-legacy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lint/eslintrc-legacy.yml b/lint/eslintrc-legacy.yml index b67f914f9..55e9a2bb8 100644 --- a/lint/eslintrc-legacy.yml +++ b/lint/eslintrc-legacy.yml @@ -1,4 +1,5 @@ rules: + eqeqeq: off indent: - error - 4