feat(regime)
This commit is contained in:
commit
2be7ec6836
62 changed files with 1817 additions and 0 deletions
7
templates/profile/library/.regime-template.json
Normal file
7
templates/profile/library/.regime-template.json
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"inherits": [
|
||||
"shared/repo",
|
||||
"shared/library",
|
||||
"tool/oxc"
|
||||
]
|
||||
}
|
||||
5
templates/profile/monorepo/library/.regime-template.json
Normal file
5
templates/profile/monorepo/library/.regime-template.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"inherits": [
|
||||
"shared/library"
|
||||
]
|
||||
}
|
||||
9
templates/profile/monorepo/root/.regime-template.json
Normal file
9
templates/profile/monorepo/root/.regime-template.json
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"inherits": [
|
||||
"shared/repo",
|
||||
"shared/package",
|
||||
"tool/oxc",
|
||||
"tool/commitlint",
|
||||
"tool/husky"
|
||||
]
|
||||
}
|
||||
11
templates/profile/monorepo/root/package.json
Normal file
11
templates/profile/monorepo/root/package.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"workspaces": {
|
||||
"catalog": {
|
||||
"@types/bun": "1.3.12"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"test": "bun run --workspaces --parallel --no-exit-on-error test",
|
||||
"check": "bun run --workspaces --parallel --no-exit-on-error check"
|
||||
}
|
||||
}
|
||||
5
templates/profile/workspace/.regime-template.json
Normal file
5
templates/profile/workspace/.regime-template.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"patterns": {
|
||||
"*.code-workspace": "merge jsonc"
|
||||
}
|
||||
}
|
||||
27
templates/profile/workspace/<<repo>>.code-workspace
Normal file
27
templates/profile/workspace/<<repo>>.code-workspace
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"name": "<<repo>>",
|
||||
"path": "."
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"oxc.path.oxfmt": "./node_modules/.bin/oxfmt",
|
||||
"oxc.path.oxlint": "./node_modules/.bin/oxlint",
|
||||
"files.exclude": {
|
||||
"**/.git": true,
|
||||
"**/node_modules": true,
|
||||
"**/.temp": true,
|
||||
"**/dist": true,
|
||||
"**/*.tsbuildinfo": true,
|
||||
},
|
||||
"explorer.fileNesting.enabled": true,
|
||||
"explorer.fileNesting.patterns": {
|
||||
"tsconfig.json": "tsconfig.*.json",
|
||||
"package.json": "bun.lock, biome.json*, *.bun.plugin.ts, ox*.config.ts, .gitignore, .mirrorignore, regime.config.json, commitlint.config.*, release.config.*js",
|
||||
"vite.config.ts": "*.vite.plugin.ts",
|
||||
"README.md": "LICENSE, LICENSE.md"
|
||||
},
|
||||
"git.ignoreLimitWarning": true,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue