-
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.
- Loading branch information
Mark Martirosian
committed
May 7, 2024
1 parent
38af828
commit 3bb0ebf
Showing
35 changed files
with
106,338 additions
and
3,338 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 +1,4 @@ | ||
lib/** | ||
|
||
lib | ||
pnpm-lock.yaml |
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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
version: 2 | ||
|
||
updates: | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
- directory: '/' | ||
labels: | ||
- 'dependencies' | ||
- 'github-actions' | ||
package-ecosystem: 'github-actions' | ||
schedule: | ||
interval: weekly | ||
day: saturday | ||
interval: weekly | ||
time: '07:00' | ||
timezone: Etc/UTC | ||
labels: | ||
- 'dependencies' | ||
- 'github-actions' |
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,11 @@ | ||
name: dependency-review | ||
|
||
on: | ||
- pull_request | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
context: | ||
uses: escapace/workflows/.github/workflows/dependency-review.yaml@trunk |
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
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 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 |
---|---|---|
@@ -1,15 +1,13 @@ | ||
ls: | ||
.config.ts: kebab-case | ||
.d.json.ts: kebab-case | ||
.d.ts: kebab-case | ||
.spec.ts: kebab-case | ||
.ts: kebab-case | ||
|
||
ignore: | ||
- coverage | ||
- .circleci | ||
- .eslintrc.json | ||
- .git | ||
- .github | ||
- .manage_modules | ||
- .vscode | ||
- lib | ||
- node_modules | ||
ls: | ||
.d.ts: kebab-case | ||
.spec.ts: kebab-case | ||
|
||
.ts: kebab-case |
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,4 @@ | ||
lib/** | ||
# NOTE: Don't modify this file. Place .prettierignore files in relevant subdirectories. | ||
|
||
lib | ||
pnpm-lock.yaml |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"$schema": "https://unpkg.com/knip@5/schema.json", | ||
"entry": [ | ||
"**/*.{test,spec}.?(c|m)[jt]s?(x)", | ||
"**/test/**/*.?(c|m)[jt]s?(x)", | ||
"eslint.config.mjs", | ||
"src/**/example*.{js,cjs,mjs,jsx,ts,cts,mts,tsx,vue}", | ||
"src/cli.ts!", | ||
"src/index.ts!", | ||
"src/types.ts", | ||
"{scripts,perf}/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}" | ||
], | ||
"ignore": ["**/*.d.+([a-zA-Z0-9]).ts", "**/*.d.ts", "lib/**"], | ||
"ignoreDependencies": ["@commitlint/cli", "prettier", "syncpack", "eslint-config-escapace"], | ||
"ignoreExportsUsedInFile": { | ||
"interface": true, | ||
"type": true | ||
}, | ||
"lefthook": { | ||
"config": [] | ||
} | ||
} |
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,73 @@ | ||
assert_lefthook_installed: true | ||
colors: false | ||
source_dir: scripts/ | ||
|
||
commit-msg: | ||
commands: | ||
'lint commit message': | ||
run: pnpm exec commitlint --edit {1} | ||
|
||
pre-commit: | ||
skip: | ||
- merge | ||
- rebase | ||
|
||
commands: | ||
knip: | ||
glob: '{package.json,**/package.json,pnpm-lock.yaml}' | ||
priority: 1 | ||
run: pnpm exec knip | ||
|
||
ls-lint: | ||
priority: 1 | ||
run: pnpm exec ls-lint --config '.ls-lint.yaml' | ||
|
||
syncpack-fix-mismatches: | ||
glob: '{package.json,**/package.json,pnpm-lock.yaml}' | ||
priority: 2 | ||
run: pnpm exec syncpack fix-mismatches | ||
stage_fixed: true | ||
|
||
syncpack-set-semver-ranges: | ||
glob: '{package.json,**/package.json,pnpm-lock.yaml}' | ||
priority: 3 | ||
run: pnpm exec syncpack set-semver-ranges | ||
stage_fixed: true | ||
|
||
syncpack-format: | ||
glob: '{package.json,**/package.json,pnpm-lock.yaml}' | ||
priority: 4 | ||
run: pnpm exec syncpack format | ||
stage_fixed: true | ||
|
||
pnpm-install: | ||
glob: '{package.json,**/package.json,pnpm-lock.yaml}' | ||
priority: 5 | ||
run: pnpm install | ||
stage_fixed: true | ||
|
||
eslint: | ||
exclude: '(^|/)pnpm-lock.yaml$' | ||
glob: '*.{js,mjs,cjs,ts,mts,cts,yml,yaml,json}' | ||
priority: 6 | ||
run: pnpm exec eslint --fix {staged_files} | ||
stage_fixed: true | ||
|
||
prettier: | ||
exclude: '(^|/)pnpm-lock.yaml$' | ||
glob: '*.{js,mjs,cjs,ts,mts,cts,yml,yaml,json,md}' | ||
priority: 7 | ||
run: pnpm exec prettier --write {staged_files} | ||
stage_fixed: true | ||
|
||
typecheck: | ||
priority: 8 | ||
run: pnpm run typecheck | ||
|
||
test: | ||
priority: 9 | ||
run: pnpm run test | ||
|
||
build: | ||
priority: 10 | ||
run: pnpm run build |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.