mirror of
https://github.com/github/gitignore.git
synced 2026-08-29 03:07:04 +02:00
Compare commits
13 Commits
6fdf792824
...
89cf783e7c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
89cf783e7c | ||
|
|
7338c62e90 | ||
|
|
3407009677 | ||
|
|
8224d3117f | ||
|
|
e5414fa4fe | ||
|
|
cff16449a5 | ||
|
|
8f2f1edc2c | ||
|
|
411ca2450b | ||
|
|
844333a10b | ||
|
|
cda33e400b | ||
|
|
0fc6f886bc | ||
|
|
dc80d08c3f | ||
|
|
b5bf7e40ff |
@ -23,7 +23,6 @@
|
||||
*.dll
|
||||
*.so.*
|
||||
|
||||
|
||||
# Fortran module files
|
||||
*.mod
|
||||
*.smod
|
||||
|
||||
68
Global/Agents.gitignore
Normal file
68
Global/Agents.gitignore
Normal 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
|
||||
@ -4,6 +4,7 @@
|
||||
*.autosave
|
||||
*.slx.r*
|
||||
*.mdl.r*
|
||||
*.bak
|
||||
|
||||
# Derived content-obscured files
|
||||
*.p
|
||||
|
||||
51
ReactJs.gitignore
Normal file
51
ReactJs.gitignore
Normal 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
52
VueJs.gitignore
Normal 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
|
||||
Loading…
Reference in New Issue
Block a user