From a36df3ea2dedfc0ac5b36dbe0f46e2c1d73b13a7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Chif=20Gerg=C5=91?= <chif.gergo@cloud.bme.hu>
Date: Thu, 6 Aug 2020 10:24:41 +0200
Subject: [PATCH] Fix prettierrc config name

---
 .eslintrc.js                        | 4 ++--
 prettierrc.json => .prettierrc.json | 2 +-
 public/index.html                   | 5 +----
 3 files changed, 4 insertions(+), 7 deletions(-)
 rename prettierrc.json => .prettierrc.json (92%)

diff --git a/.eslintrc.js b/.eslintrc.js
index bc20e06..ae5bc65 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,8 +1,8 @@
 module.exports = {
-  extends: ["airbnb-typescript"],
+  extends: ['airbnb-typescript'],
 
   parserOptions: {
-    project: "./tsconfig.json",
+    project: './tsconfig.json',
     ecmaFeatures: {
       jsx: true,
     },
diff --git a/prettierrc.json b/.prettierrc.json
similarity index 92%
rename from prettierrc.json
rename to .prettierrc.json
index 643e3d7..af85499 100644
--- a/prettierrc.json
+++ b/.prettierrc.json
@@ -5,7 +5,7 @@
   "semi": true,
   "singleQuote": true,
   "quoteProps": "as-needed",
-  "jsxSingleQuote": true,
+  "jsxSingleQuote": false,
   "trailingComma": "all",
   "bracketSpacing": true,
   "jsxBracketSameLine": false,
diff --git a/public/index.html b/public/index.html
index aa069f2..6a9f8c2 100644
--- a/public/index.html
+++ b/public/index.html
@@ -5,10 +5,7 @@
     <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
     <meta name="viewport" content="width=device-width, initial-scale=1" />
     <meta name="theme-color" content="#000000" />
-    <meta
-      name="description"
-      content="Web site created using create-react-app"
-    />
+    <meta name="description" content="Web site created using create-react-app" />
     <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
     <!--
       manifest.json provides metadata used when your web app is installed on a
-- 
GitLab