@@ -1,32 +1,37 @@
 module.exports = {
   extends: [
-    "react-app",
-    "prettier/@typescript-eslint",
-    "plugin:prettier/recommended"
-  ],
-  plugins: [
-    "graphql"
+    'react-app',
+    'prettier/@typescript-eslint',
+    'plugin:prettier/recommended',
   ],
+  plugins: ['graphql'],
   rules: {
-    "graphql/template-strings": ["error", {
-      "schemaJson": require("./src/schema.json"),
-      "env": "literal"
-    }],
-    "import/order": [
-      "error", {
-        "alphabetize": {"order": "asc"},
-        "pathGroups": [{
-          "pattern": "@material-ui/**",
-          "group": "external",
-          "position": "after"
-        }, {
-          "pattern": "*.generated",
-          "group": "sibling",
-          "position": "after"
-        }],
-        "groups": [["builtin", "external"], "parent", ["sibling", "index"]],
-        "newlines-between": "always"
-      }
-    ]
-  }
+    'graphql/template-strings': [
+      'error',
+      {
+        schemaJson: require('./src/schema.json'),
+        env: 'literal',
+      },
+    ],
+    'import/order': [
+      'error',
+      {
+        alphabetize: { order: 'asc' },
+        pathGroups: [
+          {
+            pattern: '@material-ui/**',
+            group: 'external',
+            position: 'after',
+          },
+          {
+            pattern: '*.generated',
+            group: 'sibling',
+            position: 'after',
+          },
+        ],
+        groups: [['builtin', 'external'], 'parent', ['sibling', 'index']],
+        'newlines-between': 'always',
+      },
+    ],
+  },
 };
  
  
  
    
    @@ -7,10 +7,11 @@
 2. Run the GraphQL backend on the port 3001
    - `./git-bug webui -p 3001`
 3. Run the hot-reloadable development WebUI
+
    - run `npm start` in the **webui** directory
-   
+
 The development version of the WebUI is configured to query the backend on the port 3001. You can now live edit the js code and use the normal backend.
 
 ## Bundle the web UI
 
-Once the webUI is good enough for a new release, run `make pack-webui` from the root directory to bundle the compiled js into the go binary.
+Once the webUI is good enough for a new release, run `make pack-webui` from the root directory to bundle the compiled js into the go binary.
  
  
  
    
    @@ -1,11 +1,7 @@
 {
   "compilerOptions": {
     "target": "es5",
-    "lib": [
-      "dom",
-      "dom.iterable",
-      "esnext"
-    ],
+    "lib": ["dom", "dom.iterable", "esnext"],
     "allowJs": true,
     "skipLibCheck": true,
     "esModuleInterop": true,
@@ -18,12 +14,7 @@
     "isolatedModules": true,
     "noEmit": true,
     "jsx": "react",
-    "typeRoots": [
-      "node_modules/@types/",
-      "types/"
-    ]
+    "typeRoots": ["node_modules/@types/", "types/"]
   },
-  "include": [
-    "src"
-  ]
+  "include": ["src"]
 }