diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..5f8702c
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,12 @@
+# EditorConfig is awesome: http://EditorConfig.org
+
+# top-most EditorConfig file
+root = true
+
+# Unix-style newlines with a newline ending every file
+[*]
+end_of_line = lf
+insert_final_newline = true
+charset = utf-8
+indent_style = space
+indent_size = 2
diff --git a/src/features/users/SignupForm.tsx b/src/features/users/SignupForm.tsx
index e408dc3..265446c 100644
--- a/src/features/users/SignupForm.tsx
+++ b/src/features/users/SignupForm.tsx
@@ -69,4 +69,4 @@ export function SignupForm() {
);
-}
\ No newline at end of file
+}
diff --git a/src/routes/PrivateRoute.tsx b/src/routes/PrivateRoute.tsx
index dcebd2c..3c2e6a1 100644
--- a/src/routes/PrivateRoute.tsx
+++ b/src/routes/PrivateRoute.tsx
@@ -14,4 +14,4 @@ export function PrivateRoute() {
}, [token, navigate]);
return