From fc2d3c51af8c14313eea809db7881058f58b4368 Mon Sep 17 00:00:00 2001 From: Bryan Housel <bryan@mapbox.com> Date: Thu, 5 Nov 2020 09:21:00 -0500 Subject: [PATCH] Disable the "dot-notation" eslint rule (We have to use this notation a bunch when working with tags) --- .eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index dc638d264..7a09e7ba1 100644 --- a/.eslintrc +++ b/.eslintrc @@ -11,7 +11,7 @@ "sourceType": "module" }, "rules": { - "dot-notation": "error", + "dot-notation": "off", "eqeqeq": ["error", "smart"], "indent": ["off", 2], "keyword-spacing": "error",