Format all files with no breaking changes

Lint all files using `npm run lint -- --fix`.
Format all files using `prettier --write "**/*.{ts,tsx,js,jsx,json}"`

No breaking change, only code style is modified.

Gitlab: #29
Change-Id: I4f034a7fb4d3eea10bcd3e38b44a65a1046de62f
diff --git a/cypress.config.ts b/cypress.config.ts
index d3dd9cd..aecc0dd 100644
--- a/cypress.config.ts
+++ b/cypress.config.ts
@@ -1,9 +1,9 @@
-import { defineConfig } from "cypress"
+import { defineConfig } from 'cypress';
 
 export default defineConfig({
-    e2e: {
-        setupNodeEvents(on, config) {
-            // implement node event listeners here
-        },
+  e2e: {
+    setupNodeEvents(on, config) {
+      // implement node event listeners here
     },
-})
+  },
+});