From 20e1d4901f09c8c26911f90460daf4960e0d35a6 Mon Sep 17 00:00:00 2001
From: Jonas Braathen <jonas.braathen@usit.uio.no>
Date: Mon, 29 Nov 2021 10:13:03 +0100
Subject: [PATCH] Convert .eslintrc.json to .eslintrc.js in order to set
 tsconfigRootDir

---
 frontend/.eslintrc.js   | 32 ++++++++++++++++++++++++++++++++
 frontend/.eslintrc.json | 31 -------------------------------
 2 files changed, 32 insertions(+), 31 deletions(-)
 create mode 100644 frontend/.eslintrc.js
 delete mode 100644 frontend/.eslintrc.json

diff --git a/frontend/.eslintrc.js b/frontend/.eslintrc.js
new file mode 100644
index 00000000..dbfbfdd6
--- /dev/null
+++ b/frontend/.eslintrc.js
@@ -0,0 +1,32 @@
+module.exports = {
+  env: {
+    browser: true,
+    es2021: true,
+    node: true,
+  },
+  extends: [
+    'plugin:react/recommended',
+    'airbnb',
+    'airbnb-typescript',
+    'prettier',
+  ],
+  parser: '@typescript-eslint/parser',
+  parserOptions: {
+    project: './tsconfig.json',
+    tsconfigRootDir: __dirname,
+    ecmaFeatures: {
+      jsx: true,
+    },
+    ecmaVersion: 12,
+    sourceType: 'module',
+  },
+  plugins: ['react', '@typescript-eslint'],
+  rules: {
+    semi: 'off',
+    'react/jsx-props-no-spreading': 'off',
+    '@typescript-eslint/semi': ['error', 'never'],
+    'react/jsx-uses-react': 'off',
+    'jsx-quotes': 'error',
+    'react/react-in-jsx-scope': 'off',
+  },
+}
diff --git a/frontend/.eslintrc.json b/frontend/.eslintrc.json
deleted file mode 100644
index bb8bd932..00000000
--- a/frontend/.eslintrc.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
-  "env": {
-    "browser": true,
-    "es2021": true,
-    "node": true
-  },
-  "extends": [
-    "plugin:react/recommended",
-    "airbnb",
-    "airbnb-typescript",
-    "prettier"
-  ],
-  "parser": "@typescript-eslint/parser",
-  "parserOptions": {
-    "project": "./tsconfig.json",
-    "ecmaFeatures": {
-      "jsx": true
-    },
-    "ecmaVersion": 12,
-    "sourceType": "module"
-  },
-  "plugins": ["react", "@typescript-eslint"],
-  "rules": {
-    "semi": "off",
-    "react/jsx-props-no-spreading": "off",
-    "@typescript-eslint/semi": ["error", "never"],
-    "react/jsx-uses-react": "off",
-    "jsx-quotes": "error",
-    "react/react-in-jsx-scope": "off"
-  }
-}
-- 
GitLab