Compare commits

...

13 Commits

Author SHA1 Message Date
Yasin
89cf783e7c
Merge cda33e400b into 7338c62e90 2026-05-15 16:08:57 -07:00
Devin Dooley
7338c62e90
Merge pull request #4827 from arllemfarias/patch-1
Update MATLAB.gitignore
2026-05-15 16:07:29 -07:00
Devin Dooley
3407009677
Merge pull request #4860 from bac0id/bac0id/remove-empty-lines-cpp
Remove empty line in C++.gitignore
2026-05-15 16:06:04 -07:00
Devin Dooley
8224d3117f
Merge pull request #4719 from robbiemu/ai-agents
adds common AI agents and assistants configuration files and folder
2026-05-15 15:57:48 -07:00
BAC
e5414fa4fe
Remove empty line in .gitignore 2026-05-10 17:09:15 +08:00
robbiemu
cff16449a5 added codex opt-in 2026-05-08 13:20:32 -04:00
robbiemu
8f2f1edc2c Move AI agents template to Global and scope default ignores
Keep only documented local/high-churn agent artifacts active by default, preserving common shared instruction/config files as commented opt-in examples
2026-05-08 13:16:54 -04:00
Arllem Farias
411ca2450b
Update MATLAB.gitignore
Ignore auto-generated backup files
2026-03-28 11:51:24 -04:00
Robert Collins
844333a10b
added .claude/ (by popular demand) and .gemini/ 2025-10-31 10:43:32 -05:00
Yasin
cda33e400b
fix(.gitignore): fixed GitHub copilot review changes 2025-09-30 18:33:42 +03:30
Yasin
0fc6f886bc
chore(VueJs): added VueJs.gitignore file specific for Vue.js 2025-09-30 18:28:36 +03:30
Yasin
dc80d08c3f
chore(ReactJs): added ReactJs.gitignore file specific for ReactJs 2025-09-30 18:28:11 +03:30
Robert Collins
b5bf7e40ff
adds common AI agents and assistants configuration files and folder 2025-08-25 10:36:18 -04:00
5 changed files with 172 additions and 1 deletions

View File

@ -23,7 +23,6 @@
*.dll
*.so.*
# Fortran module files
*.mod
*.smod

68
Global/Agents.gitignore Normal file
View File

@ -0,0 +1,68 @@
# AI agents and assistants
#
# Some common agent instruction and project configuration files are listed
# below as commented-out examples. They are often intentionally committed and
# shared with a team, so only uncomment them if they are local-only in your
# project.
# GEMINI.md
# WARP.md
# CRUSH.md
# QWEN.md
# OpenAI Codex
# AGENTS.md
# .codex/
# Aider
.aider.input.history
.aider.chat.history.md
.aider.llm.history
.aider.tags.cache.v*
# .aiderignore
# Claude Code
.claude/*.local.json
.claude/**/*.log
CLAUDE.local.md
# .claude/
# Gemini CLI
gemini-debug.log
.gemini-clipboard/
# .gemini/
# Cursor AI
# .cursorrules
# .cursor/
# .cursor.json
# .cursor-settings.yaml
# Continue
# .continue/
# .continuerc.json
# Cline
# .cline/
# .clinerules
# cline.json
# Other agent/editor project config
# .warp/
# .crush/
# .codeium/
# .deepseek/
# .amazon-codewhisperer/
# .tabnineignore
# .tabnine/
# GitHub Copilot
# .github/copilot-instructions.md
# Windsurf Editor
# .windsurfrules
# .windsurf/
# Replit AI Development
# .replit
# replit.nix

View File

@ -4,6 +4,7 @@
*.autosave
*.slx.r*
*.mdl.r*
*.bak
# Derived content-obscured files
*.p

51
ReactJs.gitignore Normal file
View File

@ -0,0 +1,51 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Dependency directories
node_modules/
jspm_packages/
# Production build output (CRA / Vite / Next.js)
build/
dist/
.next/
out/
# Local environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Editor directories and files
.vscode/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# TypeScript
*.tsbuildinfo
tsconfig.tsbuildinfo
# Caches
.cache/
.temp/
*.tmp
*.temp
# Optional: lock files (if you prefer not to commit them)
# package-lock.json
# yarn.lock
# pnpm-lock.yaml
# System files
.DS_Store
Thumbs.db

52
VueJs.gitignore Normal file
View File

@ -0,0 +1,52 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Dependency directories
node_modules/
jspm_packages/
# Production build output (Vue CLI / Vite)
dist/
build/
www/
*.local
# Local environment files
.env
.env.local
.env.*.local
# Vue CLI UI config
.vue-cli-ui.json
# Editor directories and files
.vscode/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# TypeScript
*.tsbuildinfo
tsconfig.tsbuildinfo
# Caches
.cache/
.temp/
*.tmp
*.temp
# Optional: lock files (if you prefer not to commit them)
# package-lock.json
# yarn.lock
# pnpm-lock.yaml
# System files
.DS_Store
Thumbs.db