From 1a190db34e1b96c7efa15da91abeb487a4d2a044 Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Mon, 15 Jun 2020 20:38:45 +0200 Subject: [PATCH] allow other quote types to avoid escaping --- scm-ui/eslint-config/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-ui/eslint-config/index.js b/scm-ui/eslint-config/index.js index 9d01ade730..edd5061116 100644 --- a/scm-ui/eslint-config/index.js +++ b/scm-ui/eslint-config/index.js @@ -27,7 +27,7 @@ module.exports = { rules: { "prettier/prettier": "warn", semi: ["error", "always"], - quotes: ["error", "double"], + quotes: ["error", "double", "avoid-escape"], "jsx-a11y/href-no-hash": [0], "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/ban-ts-ignore": "warn",