From b026bc9cbceba2f880af692a300ef02725d1c148 Mon Sep 17 00:00:00 2001 From: Dhenain Ambroise Date: Thu, 21 May 2020 10:56:16 +0200 Subject: [PATCH] Disable react/no-unescaped-entities eslint rule (too much noise compared to actual benefits) --- .eslintrc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.yml b/.eslintrc.yml index bae10d9ee..7918d6d58 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -76,7 +76,7 @@ rules: # See https://eslint.org/docs/rules react-hooks/exhaustive-deps: warn react/jsx-no-target-blank: warn # Not using "noreferrer" is not a security risk, but "noopener" should always be used indeed react/prop-types: warn # Should be handled with TS instead - react/no-unescaped-entities: warn # Causes text mismatch when enabled + react/no-unescaped-entities: 0 # Causes text mismatch when enabled jsx-a11y/anchor-is-valid: warn linebreak-style: - error