Compare commits

...

15 Commits

Author SHA1 Message Date
NJKirchner
ee1a9dc6df
Merge fee55b801b into ca6c873762 2026-05-17 03:21:38 +00:00
Devin Dooley
ca6c873762
Merge pull request #4728 from TimHatchard/lasal-gitignore
Add SIGMATEK Automation's LASAL gitignore
2026-05-15 16:15:08 -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
Tim Hatchard
6502030068
Update Lasal.gitignore with additional entries
Added maeexp and opcua entries
2026-03-27 16:00:32 +00:00
Tim Hatchard
d36057a9f8
Added lob and lba exceptions for SigCLib
SigCLib requires the lob and lba files to load a project.
2026-03-20 08:53:26 +00:00
NJKirchner
fee55b801b
Add lvprojstate to .gitignore
In LabVIEW 2026 local project state has been added to retain local session settings, like debug information (probes, breakpoints).
2026-02-06 07:20:47 -06:00
Robert Collins
844333a10b
added .claude/ (by popular demand) and .gemini/ 2025-10-31 10:43:32 -05:00
Theophylakto
b7562cc78e
Add LASAL gitignore 2025-09-08 10:06:47 +01:00
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 117 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

View File

@ -14,4 +14,5 @@
# Metadata
*.aliases
*.lvlps
*.lvprojstate
.cache/

47
Lasal.gitignore Normal file
View File

@ -0,0 +1,47 @@
## LASAL ###
# website: https://www.sigmatek-automation.com/en/products/engineering-tool-lasal/
# lasal screen/visu runtime folders generated during build
**/Runtime
**/BAK
**/Language
**/TempPreview
# lasal class runtime folders generated during build
ProjectInternal
Internal
**/Network/*/*.st
**/Drive/*.st
# bootdisk files
**/Bootdisk
# various filetypes generated at runtime or used for internal backups
*.ldi
*.bak
*.lob
*.lba
*.lcb
*.lock
*.plc
*.7z
*.zip
*.lcc
*.lds
# tag files generated by the compiler
*.mme
**/MaeExp.txt
**/MaeExp.xml
# SigCLib requires lba and lob files
!cObjLib.lob
!cObjLib.lba
# opc related classes added automatically from lasal instance
!**/Class/OPC_UA/**
!**/Class/OPC_UA_Client/**
!**/Class/OPC_UA_Server/**
!**/Class/OPC_UA_ModuleBase/**
!**/Class/OPC_UA_AddressSpace/**
!**/Class/OPC_UA_OpenSSL_v1_1_1/**