16527cb509
Workspace flatten brought these operator-scoped state dirs (Claude Code per-machine settings and remember-skill memory artifacts) into the repo's working tree. Neither belongs in git — the canonical project memory lives under ~/.claude/projects/ outside the repo.
55 lines
1.3 KiB
Plaintext
55 lines
1.3 KiB
Plaintext
# ---> Go
|
|
# If you prefer the allow list template instead of the deny list, see community template:
|
|
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
|
|
#
|
|
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
# vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
go.work.sum
|
|
|
|
# env file
|
|
.env
|
|
|
|
|
|
# Superpowers brainstorming companion sessions
|
|
.superpowers/
|
|
|
|
# Agent-authored design specs and implementation plans (kept local; the
|
|
# canonical record lives in commit messages and the running code).
|
|
docs/superpowers/
|
|
|
|
# Per-machine Claude Code settings + remember-skill memory artifacts.
|
|
# Both are operator-scoped; the canonical project memory lives under
|
|
# ~/.claude/projects/ outside the repo.
|
|
.claude/
|
|
.remember/
|
|
|
|
# Flutter
|
|
flutter_client/.dart_tool/
|
|
flutter_client/.flutter-plugins
|
|
flutter_client/.flutter-plugins-dependencies
|
|
flutter_client/build/
|
|
flutter_client/.idea/
|
|
flutter_client/ios/Podfile.lock
|
|
flutter_client/ios/Pods/
|
|
flutter_client/android/.gradle/
|
|
flutter_client/android/app/build/
|
|
flutter_client/android/local.properties
|
|
flutter_client/android/key.properties
|
|
flutter_client/*.iml
|