-
-
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.
Signed-off-by: Lexus Drumgold <[email protected]>
- Loading branch information
1 parent
4f42cd8
commit ff3eb07
Showing
40 changed files
with
1,844 additions
and
1,202 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 |
---|---|---|
|
@@ -13,9 +13,11 @@ fbca | |
gpgsign | ||
hmarr | ||
iife | ||
infile | ||
keyid | ||
larsgw | ||
lcov | ||
lintstagedrc | ||
micnncim | ||
mkbuild | ||
nocheck | ||
|
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,17 +1,27 @@ | ||
# ESLINT IGNORE | ||
# https://eslint.org/docs/user-guide/configuring#ignoring-files-and-directories | ||
# https://eslint.org/docs/user-guide/configuring/ignoring-code#the-eslintignore-file | ||
|
||
# DIRECTORIES & FILES | ||
**/*.snap | ||
**/.DS_Store | ||
.eslintcache | ||
.yarn/* | ||
__tests__/report.json | ||
coverage/* | ||
dist/* | ||
node_modules/* | ||
tsconfig.temp.json | ||
coverage/ | ||
dist/ | ||
node_modules/ | ||
tsconfig*temp.json | ||
vitest.config.*.timestamp-*.mjs | ||
yarn.lock | ||
|
||
# NEGATED PATTERNS | ||
!/.* | ||
!.codecov.yml | ||
!.commitlintrc.json | ||
!.cspell.json | ||
!.eslintrc.base.cjs | ||
!.eslintrc.cjs | ||
!.github/ | ||
!.graphqlrc.yml | ||
!.lintstagedrc.json | ||
!.markdownlint.jsonc | ||
!.prettierrc.json | ||
!.vscode/ | ||
!.yarnrc.yml |
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
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 |
---|---|---|
@@ -1,10 +1,5 @@ | ||
#!/bin/sh | ||
|
||
# Pre-Push Workflow | ||
# | ||
# References: | ||
# | ||
# - https://vitest.dev/guide/cli.html#changed | ||
|
||
yarn test --changed HEAD^ | ||
yarn build |
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,7 @@ | ||
{ | ||
"*": ["yarn check:format", "yarn check:spelling"], | ||
"**/*.{cjs,cts,gql,json,jsonc,md,mjs,ts,yml}": ["yarn check:lint"], | ||
"**/yarn.lock": "yarn dedupe --check" | ||
"*": ["prettier --check", "cspell lint --color --no-progress --relative $@"], | ||
"**/*.{cjs,gql,json,jsonc,md,mjs,ts,yml}": ["eslint --exit-on-fatal-error"], | ||
"**/*.{cjs,mjs,ts}": "vitest typecheck --changed --run", | ||
"**/yarn.lock": "yarn dedupe --check", | ||
"src/**/*.ts": "vitest --changed --coverage --run" | ||
} |
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
# DIRECTORIES & FILES | ||
**/CHANGELOG.md | ||
**/LICENSE.md | ||
**/RELEASE_NOTES.md |
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,5 @@ | ||
// https://code.visualstudio.com/docs/editor/debugging | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [] | ||
} |
Oops, something went wrong.