From 88abc9a2a9c9aa4368ad5829eb73a94744cdf289 Mon Sep 17 00:00:00 2001 From: Daniel Lugo Date: Mon, 13 Jan 2020 21:28:40 -0400 Subject: [PATCH] disable rule --- .eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 8bd8ef46..bfcdeedb 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -62,7 +62,10 @@ "no-shadow": "off", // We're usually throwing objects throughout the API to allow for more detailed error messages - "no-throw-literal": "off" + "no-throw-literal": "off", + + // lightning has sync methods and this rule bans them + "no-sync": "off" }, "parser": "babel-eslint", "env": {