generated from t3-oss/create-t3-turbo
-
-
Notifications
You must be signed in to change notification settings - Fork 23
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 #15 from Indie-Creator-Community/chore/fix-linting…
…-issues Chore/fix linting issues
- Loading branch information
Showing
10 changed files
with
29 additions
and
47 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
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
/** | ||
* isNullOrUndefined | ||
* @description - validate if an element is null or undefined | ||
* isNullOrUndefined. | ||
* | ||
* - validate if an element is null or undefined. | ||
* | ||
* @function | ||
* @param {any} value - Element to validate | ||
* @return {boolean} Element is null or undefined. | ||
* @param {any} value - Element to validate. | ||
* @returns {boolean} Element is null or undefined. | ||
*/ | ||
export const isNullOrUndefined = (value: any): boolean => value === undefined || value === null; | ||
export const isNullOrUndefined = (value: unknown): boolean => value === undefined || value === null; |
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
"packageManager": "[email protected]", | ||
"scripts": { | ||
"build": "turbo build", | ||
"clean": "git clean -xdf node_modules", | ||
"clean": "git clean -xdf .turbo node_modules dist", | ||
"clean:workspaces": "turbo clean", | ||
"db:docker:startup": "docker compose --profile db up -d", | ||
"db:docker:shutdown": "docker compose --profile db down", | ||
|
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.