generated from Gabb-c/node-ts-lib-setup
-
-
Notifications
You must be signed in to change notification settings - Fork 28
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 #1136 from Gabb-c/feat/tests-refactor
Feat - tests refactor
- Loading branch information
Showing
71 changed files
with
5,936 additions
and
4,095 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 |
---|---|---|
@@ -1,90 +1,11 @@ | ||
# Automatically detect text files and handle line endings appropriately | ||
* text=auto | ||
|
||
# DOCUMENTS | ||
*.bibtex text diff=bibtex | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain | ||
*.md text diff=markdown | ||
*.tex text diff=tex | ||
*.adoc text | ||
*.textile text | ||
*.mustache text | ||
*.csv text | ||
*.tab text | ||
*.tsv text | ||
*.txt text eol=lf | ||
*.sql text | ||
*.ps1 text eol=crlf | ||
|
||
# CUSTOM | ||
# Use LF as EOL for these files | ||
.editorconfig text eol=lf | ||
.gitignore text eol=lf | ||
*.css text eol=lf | ||
*.df text eol=lf | ||
*.htm text eol=lf | ||
*.html text eol=lf | ||
*.java text eol=lf | ||
*.js text eol=lf | ||
*.json text eol=lf | ||
*.ts text eol=lf | ||
*.jsp text eol=lf | ||
*.jspf text eol=lf | ||
*.properties text eol=lf | ||
*.scss text eol=lf | ||
*.tld text eol=lf | ||
*.ts text eol=lf | ||
*.xml text eol=lf | ||
|
||
# GRAPHICS | ||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.tif binary | ||
*.tiff binary | ||
*.ico binary | ||
# SVG treated as an asset (binary) by default. | ||
*.svg text | ||
# If you want to treat it as binary, | ||
# use the following line instead. | ||
# *.svg binary | ||
*.eps binary | ||
|
||
# SCRIPTS | ||
*.bash text eol=lf | ||
*.fish text eol=lf | ||
*.sh text eol=lf | ||
# These are explicitly windows files and should use CRLF | ||
*.bat text eol=crlf | ||
*.cmd text eol=crlf | ||
|
||
# SERIALIZATION | ||
*.json text | ||
*.toml text | ||
*.xml text | ||
*.yaml text | ||
*.yml text | ||
|
||
# ARCHIVES | ||
*.7z binary | ||
*.gz binary | ||
*.tar binary | ||
*.tgz binary | ||
*.zip binary | ||
# Ignore the .gitattributes file itself when exporting or archiving the repository | ||
.gitattributes export-ignore | ||
|
||
# TEXT FILES WHERE LINE ENDINGS SHOULD BE PRESERVED | ||
*.patch -text | ||
# Ignore the .gitignore file when exporting or archiving the repository | ||
.gitignore export-ignore | ||
|
||
# EXCLUDE FILES FROM EXPORTING | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.gitkeep export-ignore | ||
# Ignore the .gitkeep file when exporting or archiving the repository | ||
.gitkeep export-ignore |
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 +1,2 @@ | ||
echo 'Linting commit message...' | ||
npx --no -- commitlint --edit $1 |
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,5 +1,6 @@ | ||
{ | ||
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [ | ||
"biome check --apply-unsafe --no-errors-on-unmatched" | ||
] | ||
"biome check --staged --apply-unsafe --no-errors-on-unmatched" | ||
], | ||
"src/**/*.ts": ["tsc --noEmit"] | ||
} |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default { | ||
extends: ["@commitlint/config-conventional"], | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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.