Skip to content

Commit 22a2f1d

Browse files
chore: update .gitignore and add OpenClaw workspace configuration
- Modify .gitignore to improve clarity on ignored files, including logs and Capacitor-related workspace files. - Add new OpenClaw workspace configuration file for better project organization and TypeScript settings.
1 parent af5e864 commit 22a2f1d

2 files changed

Lines changed: 22 additions & 5 deletions

File tree

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dist/
2222
.vscode/
2323
*.swp
2424
*.swo
25-
*~# Logs
25+
*~ # Logs
2626
*.log
2727
npm-debug.log*
2828

@@ -35,14 +35,12 @@ Thumbs.db
3535

3636
# AI / Cursor generated plan files
3737
*.plan.md
38-
*.code-workspace
39-
40-
# Capacitor / iOS
38+
*.code-workspace # Capacitor / iOS
4139
ios/App/App/public/
4240
ios/App/Pods/
4341
ios/DerivedData/
4442
*.xcworkspace/xcuserdata/
4543
*.xcodeproj/xcuserdata/
4644
*.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/
4745
*.hmap
48-
*.ipa
46+
*.ipa

openclaw.code-workspace

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"folders": [
3+
{
4+
"path": "../../openclaw/openclaw"
5+
},
6+
{
7+
"path": "."
8+
},
9+
{
10+
"path": "../web"
11+
}
12+
],
13+
"settings": {
14+
"typescript.reportStyleChecksAsWarnings": false,
15+
"typescript.tsdk": "node_modules/typescript/lib",
16+
"typescript.experimental.useTsgo": true,
17+
"git.ignoreLimitWarning": true
18+
}
19+
}

0 commit comments

Comments
 (0)