-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
522ea80
commit 746f683
Showing
82 changed files
with
3,271 additions
and
5,073 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,48 @@ | ||
{ | ||
"name": "js", | ||
//https://containers.dev/templates or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | ||
"image": "mcr.microsoft.com/devcontainers/typescript-node", | ||
// https://containers.dev/features | ||
"features": { | ||
"ghcr.io/devcontainers/features/github-cli:1": { | ||
"installDirectlyFromGitHubRelease": true, | ||
"version": "latest" | ||
}, | ||
"ghcr.io/devcontainers/features/node:1": { | ||
"nodeGypDependencies": true, | ||
"version": "lts" | ||
} | ||
}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [], | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"postCreateCommand": "pnpm install", | ||
|
||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["readme.md"] | ||
}, | ||
"vscode": { | ||
"extensions": [ | ||
"biomejs.biome", | ||
"github.vscode-pull-request-github", | ||
"yoavbls.pretty-ts-errors" | ||
], | ||
"settings": { | ||
"editor.defaultFormatter": "biomejs.biome", | ||
"editor.codeActionsOnSave": { | ||
"quickfix.biome": "explicit", | ||
"source.organizeImports.biome": "explicit" | ||
}, | ||
"editor.formatOnSave": true, | ||
"javascript.format.enable": false, | ||
"javascript.preferences.importModuleSpecifierEnding": "js", | ||
"typescript.format.enable": false, | ||
"typescript.preferences.importModuleSpecifierEnding": "auto", | ||
"typescript.enablePromptUseWorkspaceTsdk": true | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": ["iso-config/biome"] | ||
} |
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 |
---|---|---|
|
@@ -2,16 +2,13 @@ | |
"name": "iso-repo", | ||
"version": "0.0.0", | ||
"private": true, | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"packageManager": "[email protected]", | ||
"workspaces": ["packages/*"], | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=18" | ||
"node": ">=20" | ||
}, | ||
"scripts": { | ||
"format": "prettier --write '**/*.{js,ts,yml,json}' --ignore-path .gitignore", | ||
"format:check": "prettier --check '**/*.{js,ts,yml,json}' --ignore-path .gitignore", | ||
"format": "biome check --apply --no-errors-on-unmatched --files-ignore-unknown=true .", | ||
"clean": "rm -rf docs node_modules pnpm-lock.yaml packages/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules,.next}", | ||
"lint": "pnpm -r --if-present run lint", | ||
"test": "pnpm -r --if-present run test", | ||
|
@@ -22,28 +19,19 @@ | |
}, | ||
"devDependencies": { | ||
"depcheck": "^1.4.7", | ||
"hd-scripts": "^9.1.0", | ||
"iso-config": "workspace:^", | ||
"lint-staged": "^15.2.2", | ||
"prettier": "3.2.5", | ||
"simple-git-hooks": "^2.11.0", | ||
"typedoc": "^0.25.12", | ||
"typedoc-plugin-missing-exports": "^2.2.0", | ||
"typescript": "5.3.3" | ||
"typescript": "5.4.5", | ||
"@biomejs/biome": "1.7.3" | ||
}, | ||
"simple-git-hooks": { | ||
"pre-commit": "npx lint-staged" | ||
}, | ||
"lint-staged": { | ||
"*.{js,ts,yml,json}": "prettier --write", | ||
"*": "eslint --fix" | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"./node_modules/hd-scripts/eslint/index.js" | ||
], | ||
"ignorePatterns": [ | ||
"docs" | ||
] | ||
}, | ||
"prettier": "hd-scripts/prettier.config.js" | ||
"*": "biome check --no-errors-on-unmatched --files-ignore-unknown=true" | ||
} | ||
} |
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
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.