-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from builtbysuraj/dev
Dev
- Loading branch information
Showing
112 changed files
with
2,762 additions
and
1,245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#npx lint-staged | ||
|
||
|
||
echo ' | ||
💅🛠️ Formatting and testing project before committing... | ||
' | ||
|
||
# Check tsconfig standards | ||
npm run check-types || | ||
( | ||
echo ' | ||
TypeScript Check Failed. ❌ | ||
Make the required changes listed above, add changes and try to commit again. | ||
' | ||
false; | ||
) | ||
|
||
|
||
# Check ESLint Standards | ||
npm run check-lint || | ||
( | ||
echo ' | ||
ESLint Check Failed. ❌ | ||
Make the required changes listed above, add changes and try to commit again. | ||
' | ||
false; | ||
) | ||
|
||
|
||
# Check Prettier standards | ||
npm run check-format-client || | ||
( | ||
echo ' | ||
Prettier Check Failed. ❌ | ||
Run npm run format, add changes and try commit again.'; | ||
false; | ||
) | ||
|
||
npm run check-format-server || | ||
( | ||
echo ' | ||
Prettier Check Failed. ❌ | ||
Run npm run format, add changes and try commit again.'; | ||
false; | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* /index.html 200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.AppContainer { | ||
background-color: #f1f3f6; | ||
z-index: -1; | ||
min-height: 100vh; | ||
} | ||
|
||
hr { | ||
border-top: 1px solid rgba(96, 96, 96, 0.217); | ||
margin: 15px 0 0 0; | ||
} | ||
|
||
.sidebar section { | ||
margin: 10px 0; | ||
} | ||
|
||
.sidebar section input { | ||
margin: 8px 0; | ||
} | ||
|
||
.sidebar section label { | ||
padding: 0 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.