From 3f43663349a32226551bd2fdeccc6a04dc0eb905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hampus=20Sj=C3=B6berg?= Date: Wed, 4 Sep 2024 18:35:54 +0200 Subject: [PATCH] Fix eslint rule regarding double quotes for strings --- .eslintrc.js | 5 ++++- .prettierrc.js | 8 -------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 187894b6a..d687c9f92 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,4 +1,7 @@ module.exports = { root: true, - extends: '@react-native', + extends: "@react-native", + rules: { + quotes: "off", + }, }; diff --git a/.prettierrc.js b/.prettierrc.js index 358e50a49..a680168d1 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -1,11 +1,3 @@ -// module.exports = { -// arrowParens: 'avoid', -// bracketSameLine: true, -// bracketSpacing: false, -// singleQuote: true, -// trailingComma: 'all', -// }; - module.exports = { trailingComma: "all", tabWidth: 2,