Skip to content

Commit

Permalink
Add editorconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerwins committed Aug 2, 2022
1 parent addb92a commit 3a1d306
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion src/features/users/SignupForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ export function SignupForm() {
</form>

);
}
}
2 changes: 1 addition & 1 deletion src/routes/PrivateRoute.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ export function PrivateRoute() {
}, [token, navigate]);

return <Outlet />
}
}
2 changes: 1 addition & 1 deletion src/routes/Signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ export function Signup() {
return <div>
<SignupForm />
</div>;
}
}
2 changes: 1 addition & 1 deletion src/routes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ export * from './CreateProject';
export * from './Project';
export * from './ProjectAPIKeys';
export * from './Documents';
export * from './ProjectSettings';
export * from './ProjectSettings';

0 comments on commit 3a1d306

Please sign in to comment.