Compare commits
No commits in common. "59d67db5859a7aba266d6cc92b1c139e693e6559" and "230a63f480d87073a612b503ef3ab550a77e9c96" have entirely different histories.
59d67db585
...
230a63f480
5 changed files with 7 additions and 39 deletions
|
@ -12,7 +12,6 @@
|
|||
defaultBranch = main
|
||||
|
||||
[alias]
|
||||
amend = commit --verbose --amend
|
||||
dc = diff --staged
|
||||
di = diff
|
||||
pf = pull --ff-only
|
||||
|
@ -22,8 +21,6 @@
|
|||
ci = commit --verbose
|
||||
co = checkout
|
||||
cp = cherry-pick
|
||||
cpc = cherry-pick --continue
|
||||
cpq = cherry-pick --abort
|
||||
current-branch = rev-parse --abbrev-ref HEAD
|
||||
cl = clone
|
||||
ll = !max-git-log
|
||||
|
@ -33,16 +30,12 @@
|
|||
s = switch
|
||||
b = switch -c
|
||||
lt = log --oneline -10
|
||||
r = rebase
|
||||
rc = rebase --continue
|
||||
rq = rebase --abort
|
||||
ri = rebase --interactive
|
||||
|
||||
[color]
|
||||
ui = auto
|
||||
|
||||
[help]
|
||||
autocorrect = never
|
||||
autocorrect = prompt
|
||||
|
||||
[push]
|
||||
default = current
|
||||
|
|
|
@ -18,9 +18,7 @@ GoToFile
|
|||
|
||||
.idea
|
||||
.nova
|
||||
.zed
|
||||
.pick_index
|
||||
.claude
|
||||
|
||||
# Files I want to have but not stage
|
||||
*.maxignore
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
**/.claude/settings.local.json
|
|
@ -10,14 +10,13 @@
|
|||
"features": {
|
||||
"edit_prediction_provider": "zed"
|
||||
},
|
||||
"auto_fold_dirs": false,
|
||||
"edit_predictions": {
|
||||
"mode": "subtle"
|
||||
},
|
||||
"agent": {
|
||||
"default_model": {
|
||||
"provider": "anthropic",
|
||||
"model": "claude-sonnet-4-latest"
|
||||
"model": "claude-3-7-sonnet-latest"
|
||||
},
|
||||
"version": "2"
|
||||
},
|
||||
|
|
|
@ -1,30 +1,4 @@
|
|||
{
|
||||
"tests": {
|
||||
"prefix": "tests",
|
||||
"description": "Test suite",
|
||||
"body": ["describe('${1:Function name}', () => {", " $0", "})"]
|
||||
},
|
||||
"utesth": {
|
||||
"prefix": "utesth",
|
||||
"description": "Unit test header",
|
||||
"body": [
|
||||
"/* eslint-disable @typescript-eslint/no-unused-expressions */",
|
||||
"import 'reflect-metadata'",
|
||||
"",
|
||||
"import { describe, it } from 'node:test'",
|
||||
"",
|
||||
"import { expect, use } from 'chai'",
|
||||
"import chaiAsPromised from 'chai-as-promised'",
|
||||
"use(chaiAsPromised)",
|
||||
"",
|
||||
"$0"
|
||||
]
|
||||
},
|
||||
"utest": {
|
||||
"prefix": "utest",
|
||||
"description": "Unit test case",
|
||||
"body": ["it('${2:Should...}', async () => {", " $0", "})"]
|
||||
},
|
||||
"itesth": {
|
||||
"prefix": "itesth",
|
||||
"description": "Integration test header",
|
||||
|
@ -44,6 +18,11 @@
|
|||
"$0"
|
||||
]
|
||||
},
|
||||
"itests": {
|
||||
"prefix": "itests",
|
||||
"description": "Integration test suite",
|
||||
"body": ["describe('${1:Function name}', () => {", " $0", "})"]
|
||||
},
|
||||
"itest": {
|
||||
"prefix": "itest",
|
||||
"description": "Integration test case",
|
||||
|
|
Loading…
Add table
Reference in a new issue