Merge branch 'github:main' into SgtPilford
This commit is contained in:
commit
bb325039f9
21 changed files with 242 additions and 130 deletions
|
|
@ -36,6 +36,9 @@ ScaffoldingReadMe.txt
|
|||
# NuGet Symbol Packages
|
||||
*.snupkg
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
|
||||
# Others
|
||||
~$*
|
||||
*~
|
||||
|
|
@ -51,4 +54,4 @@ CodeCoverage/
|
|||
# NUnit
|
||||
*.VisualState.xml
|
||||
TestResult.xml
|
||||
nunit-*.xml
|
||||
nunit-*.xml
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ _site/
|
|||
/vendor
|
||||
|
||||
# Specific ignore for GitHub Pages
|
||||
# GitHub Pages will always use its own deployed version of pages-gem
|
||||
# GitHub Pages will always use its own deployed version of pages-gem
|
||||
# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is
|
||||
# counterproductive to check this file into the repository.
|
||||
# Details at https://github.com/github/pages-gem/issues/768
|
||||
|
|
|
|||
|
|
@ -81,3 +81,6 @@ http-client.private.env.json
|
|||
# Apifox Helper cache
|
||||
.idea/.cache/.Apifox_Helper
|
||||
.idea/ApifoxUploaderProjectSetting.xml
|
||||
|
||||
# Github Copilot persisted session migrations, see: https://github.com/microsoft/copilot-intellij-feedback/issues/712#issuecomment-3322062215
|
||||
.idea/**/copilot.data.migration.*.xml
|
||||
|
|
|
|||
51
Global/STM32CubeIDE.gitignore
Normal file
51
Global/STM32CubeIDE.gitignore
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# STM32CubeIDE specific files
|
||||
|
||||
# Project-specific settings. Ignore it if developers have different preferences.
|
||||
# However, if you want all team members to use the same code formatting and settings,
|
||||
# consider including the .settings folder in the repository.
|
||||
|
||||
# /.settings/
|
||||
|
||||
# Ignore Eclipse-based IDE launch configurations.
|
||||
# Uncomment if you want each developer to have their own unique debug configurations.
|
||||
#*.launch
|
||||
|
||||
# Ignore any JLink-related files (debug configurations).
|
||||
# Uncomment if you want each developer to have their own unique debug configurations.
|
||||
#*.jlink
|
||||
|
||||
# Ignore log files generated by the IDE.
|
||||
# These are not necessary for version control.
|
||||
*.log
|
||||
|
||||
# Build files
|
||||
|
||||
# Ignore build output directories.
|
||||
# These are not needed in the repository as they are generated during the build process.
|
||||
Debug/
|
||||
Release/
|
||||
|
||||
# Ignore common binary and object files generated during compilation.
|
||||
# They should not be included in the repository as they are build artifacts.
|
||||
*.elf
|
||||
*.map
|
||||
*.bin
|
||||
*.hex
|
||||
*.srec
|
||||
*.lst
|
||||
*.o
|
||||
*.d
|
||||
*.a
|
||||
*.su
|
||||
*.crl
|
||||
|
||||
#TouchGFX files (in case your project has touchGFX)
|
||||
TouchGFX/generated
|
||||
TouchGFX/build
|
||||
TouchGFX/simulator/msvs/.vs
|
||||
|
||||
# Backup files
|
||||
|
||||
# Ignore temporary and backup files generated by the operating system and editor.
|
||||
# These are not needed in the repository.
|
||||
*.bak
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
# General
|
||||
.DS_Store
|
||||
__MACOSX/
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
Icon[
]
|
||||
|
|
|
|||
|
|
@ -1,47 +1,47 @@
|
|||
# Compiled binaries
|
||||
*.o
|
||||
*.bin
|
||||
*.elf
|
||||
*.hex
|
||||
*.map
|
||||
*.out
|
||||
*.obj
|
||||
|
||||
# Trash
|
||||
*.bak
|
||||
thumbs.db
|
||||
*.~*
|
||||
|
||||
# IAR Settings
|
||||
**/settings/*.crun
|
||||
**/settings/*.dbgdt
|
||||
**/settings/*.cspy
|
||||
**/settings/*.cspy.*
|
||||
**/settings/*.xcl
|
||||
**/settings/*.dni
|
||||
**/settings/*.wsdt
|
||||
**/settings/*.wspos
|
||||
|
||||
# IAR Debug Exe
|
||||
**/Exe/*.sim
|
||||
|
||||
# IAR Debug Obj
|
||||
**/Obj/*.pbd
|
||||
**/Obj/*.pbd.*
|
||||
**/Obj/*.pbi
|
||||
**/Obj/*.pbi.*
|
||||
|
||||
# IAR project "Debug" directory
|
||||
Debug/
|
||||
|
||||
# IAR project "Release" directory
|
||||
Release/
|
||||
|
||||
# IAR project settings directory
|
||||
settings/
|
||||
|
||||
# IAR backup files
|
||||
Backup*
|
||||
|
||||
# IAR .dep files
|
||||
# Compiled binaries
|
||||
*.o
|
||||
*.bin
|
||||
*.elf
|
||||
*.hex
|
||||
*.map
|
||||
*.out
|
||||
*.obj
|
||||
|
||||
# Trash
|
||||
*.bak
|
||||
thumbs.db
|
||||
*.~*
|
||||
|
||||
# IAR Settings
|
||||
**/settings/*.crun
|
||||
**/settings/*.dbgdt
|
||||
**/settings/*.cspy
|
||||
**/settings/*.cspy.*
|
||||
**/settings/*.xcl
|
||||
**/settings/*.dni
|
||||
**/settings/*.wsdt
|
||||
**/settings/*.wspos
|
||||
|
||||
# IAR Debug Exe
|
||||
**/Exe/*.sim
|
||||
|
||||
# IAR Debug Obj
|
||||
**/Obj/*.pbd
|
||||
**/Obj/*.pbd.*
|
||||
**/Obj/*.pbi
|
||||
**/Obj/*.pbi.*
|
||||
|
||||
# IAR project "Debug" directory
|
||||
Debug/
|
||||
|
||||
# IAR project "Release" directory
|
||||
Release/
|
||||
|
||||
# IAR project settings directory
|
||||
settings/
|
||||
|
||||
# IAR backup files
|
||||
Backup*
|
||||
|
||||
# IAR .dep files
|
||||
*.dep
|
||||
|
|
@ -81,6 +81,7 @@ out
|
|||
# Nuxt.js build / generate output
|
||||
.nuxt
|
||||
dist
|
||||
.output
|
||||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
|
|
@ -134,6 +135,7 @@ dist
|
|||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
|
||||
# Vite logs files
|
||||
# Vite files
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
.vite/
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ packer_cache/
|
|||
crash.log
|
||||
|
||||
# https://www.packer.io/guides/hcl/variables
|
||||
# Exclude all .pkrvars.hcl files, which are likely to contain sensitive data,
|
||||
# such as password, private keys, and other secrets. These should not be part of
|
||||
# version control as they are data points which are potentially sensitive and
|
||||
# Exclude all .pkrvars.hcl files, which are likely to contain sensitive data,
|
||||
# such as password, private keys, and other secrets. These should not be part of
|
||||
# version control as they are data points which are potentially sensitive and
|
||||
# subject to change depending on the environment.
|
||||
#
|
||||
*.pkrvars.hcl
|
||||
|
|
|
|||
|
|
@ -38,4 +38,4 @@ inc/
|
|||
/local/
|
||||
/.carmel/
|
||||
# cpanfile.snapshot should generally be ignored for library code, otherwise included
|
||||
# cpanfile.snapshot
|
||||
# cpanfile.snapshot
|
||||
|
|
|
|||
|
|
@ -27,8 +27,8 @@ share/python-wheels/
|
|||
MANIFEST
|
||||
|
||||
# PyInstaller
|
||||
# Usually these files are written by a python script from a template
|
||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||
# Usually these files are written by a python script from a template
|
||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||
*.manifest
|
||||
*.spec
|
||||
|
||||
|
|
@ -92,34 +92,34 @@ ipython_config.py
|
|||
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||
# install all needed dependencies.
|
||||
#Pipfile.lock
|
||||
# Pipfile.lock
|
||||
|
||||
# UV
|
||||
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||
# commonly ignored for libraries.
|
||||
#uv.lock
|
||||
# uv.lock
|
||||
|
||||
# poetry
|
||||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||
# commonly ignored for libraries.
|
||||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
||||
#poetry.lock
|
||||
#poetry.toml
|
||||
# poetry.lock
|
||||
# poetry.toml
|
||||
|
||||
# pdm
|
||||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
||||
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
||||
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
||||
#pdm.lock
|
||||
#pdm.toml
|
||||
# pdm.lock
|
||||
# pdm.toml
|
||||
.pdm-python
|
||||
.pdm-build/
|
||||
|
||||
# pixi
|
||||
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
||||
#pixi.lock
|
||||
# pixi.lock
|
||||
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
||||
# in the .venv directory. It is recommended not to include this directory in version control.
|
||||
.pixi
|
||||
|
|
@ -131,6 +131,19 @@ __pypackages__/
|
|||
celerybeat-schedule
|
||||
celerybeat.pid
|
||||
|
||||
# Redis
|
||||
*.rdb
|
||||
*.aof
|
||||
*.pid
|
||||
|
||||
# RabbitMQ
|
||||
mnesia/
|
||||
rabbitmq/
|
||||
rabbitmq-data/
|
||||
|
||||
# ActiveMQ
|
||||
activemq-data/
|
||||
|
||||
# SageMath parsed files
|
||||
*.sage.py
|
||||
|
||||
|
|
@ -169,23 +182,23 @@ dmypy.json
|
|||
cython_debug/
|
||||
|
||||
# PyCharm
|
||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||
#.idea/
|
||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||
# .idea/
|
||||
|
||||
# Abstra
|
||||
# Abstra is an AI-powered process automation framework.
|
||||
# Ignore directories containing user credentials, local state, and settings.
|
||||
# Learn more at https://abstra.io/docs
|
||||
# Abstra is an AI-powered process automation framework.
|
||||
# Ignore directories containing user credentials, local state, and settings.
|
||||
# Learn more at https://abstra.io/docs
|
||||
.abstra/
|
||||
|
||||
# Visual Studio Code
|
||||
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
||||
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
||||
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
||||
# you could uncomment the following to ignore the entire vscode folder
|
||||
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
||||
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
||||
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
||||
# you could uncomment the following to ignore the entire vscode folder
|
||||
# .vscode/
|
||||
|
||||
# Ruff stuff:
|
||||
|
|
|
|||
|
|
@ -1,31 +1,31 @@
|
|||
## Ignore Visual Studio SSDT sqlproj specific temporary files, build results, etc
|
||||
##
|
||||
##
|
||||
## Get latest from https://github.com/github/gitignore/blob/master/SSDT-sqlproj.gitignore
|
||||
# Build output
|
||||
bin/
|
||||
obj/
|
||||
|
||||
# DACPAC files
|
||||
*.dacpac
|
||||
|
||||
# Publish profiles (optional, if environment-specific)
|
||||
*.publish.xml
|
||||
|
||||
# SQL Server debug files
|
||||
*.dbmdl
|
||||
*.sqlcmdvars
|
||||
|
||||
# Visual Studio settings
|
||||
.vs/
|
||||
|
||||
# User-specific files
|
||||
*.user
|
||||
*.suo
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
*.log
|
||||
|
||||
## Ignore Visual Studio SSDT sqlproj specific temporary files, build results, etc
|
||||
##
|
||||
##
|
||||
## Get latest from https://github.com/github/gitignore/blob/master/SSDT-sqlproj.gitignore
|
||||
# Build output
|
||||
bin/
|
||||
obj/
|
||||
|
||||
# DACPAC files
|
||||
*.dacpac
|
||||
|
||||
# Publish profiles (optional, if environment-specific)
|
||||
*.publish.xml
|
||||
|
||||
# SQL Server debug files
|
||||
*.dbmdl
|
||||
*.sqlcmdvars
|
||||
|
||||
# Visual Studio settings
|
||||
.vs/
|
||||
|
||||
# User-specific files
|
||||
*.user
|
||||
*.suo
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
*.log
|
||||
|
||||
|
|
|
|||
39
Salesforce.gitignore
Normal file
39
Salesforce.gitignore
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# This file is used for Git repositories to specify intentionally untracked files that Git should ignore.
|
||||
# If you are not using git, you can delete this file. For more information see: https://git-scm.com/docs/gitignore
|
||||
# For useful gitignore templates see: https://github.com/github/gitignore
|
||||
|
||||
# Salesforce cache
|
||||
.sf/
|
||||
.sfdx/
|
||||
.localdevserver/
|
||||
deploy-options.json
|
||||
.localdev
|
||||
|
||||
# LWC VSCode autocomplete
|
||||
**/lwc/jsconfig.json
|
||||
|
||||
# LWC Jest coverage reports
|
||||
coverage/
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Windows system files
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
[Dd]esktop.ini
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# Salesforce Analyzer results
|
||||
sca-results.csv
|
||||
sfca_results.json
|
||||
|
||||
# Local environment variables
|
||||
.env
|
||||
|
|
@ -10,8 +10,8 @@ crash.log
|
|||
crash.*.log
|
||||
|
||||
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
|
||||
# password, private keys, and other secrets. These should not be part of version
|
||||
# control as they are data points which are potentially sensitive and subject
|
||||
# password, private keys, and other secrets. These should not be part of version
|
||||
# control as they are data points which are potentially sensitive and subject
|
||||
# to change depending on the environment.
|
||||
*.tfvars
|
||||
*.tfvars.json
|
||||
|
|
|
|||
|
|
@ -46,9 +46,9 @@ LineIDs.dbg.bak
|
|||
**/_Repository/
|
||||
|
||||
|
||||
# To include a specific library directory (i.e. third party/custom libs),
|
||||
# To include a specific library directory (i.e. third party/custom libs),
|
||||
# use pattern `!/**/_Libraries/<directory name>/` i.e. `!/**/_Libraries/www.tcunit.org/`
|
||||
#
|
||||
#
|
||||
|
||||
# VS Shell project specific files and folders
|
||||
**/.vs/
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
## The [Mm]edia/ folder contains content. Content may vary by environment and should therefore not be added to source control.
|
||||
## Uncomment this line if you think it fits the way you work on your project.
|
||||
## **/[Mm]edia/
|
||||
## **/[Mm]edia/
|
||||
|
||||
# Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder)
|
||||
# Make sure to include details from VisualStudio.gitignore BEFORE this
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
# gitignore template for Nasa SpecsIntact (SI)
|
||||
# Website: https://specsintact.ksc.nasa.gov/
|
||||
#
|
||||
# Recommended:
|
||||
# Recommended:
|
||||
# MicrosoftOffice.gitignore
|
||||
#
|
||||
#
|
||||
|
||||
# SpecsIntact (SI) Locking file; this would lock everyone out.
|
||||
*.se$
|
||||
|
|
@ -20,14 +20,14 @@ SUBMVER.*
|
|||
TTLDIFFS.*
|
||||
|
||||
# SpecsIntact files that change a lot and don't actually affect SI
|
||||
# PULL.TBL is an auto-generated file to help speed SI loading.
|
||||
# PULL.TBL is an auto-generated file to help speed SI loading.
|
||||
PULL.TBL
|
||||
pulltbl.bck
|
||||
|
||||
# Tailoring information.
|
||||
# Keep tailor.tag; it is a list of tailoring options in SI.
|
||||
|
||||
# JOB.OTL informs SI where a spec section came from.
|
||||
# JOB.OTL informs SI where a spec section came from.
|
||||
# Keeping the old one isn't useful in git.
|
||||
JOB.OTL.OLD
|
||||
|
||||
|
|
@ -35,6 +35,6 @@ JOB.OTL.OLD
|
|||
# notebooks, and if so, OneNote will litter the SI folder with these.
|
||||
*.onetoc*
|
||||
|
||||
# Log files, typically tagfix or other auto generated logs that aren't useful
|
||||
# Log files, typically tagfix or other auto generated logs that aren't useful
|
||||
# outside of the user that made them and clutter up the index.
|
||||
*.log
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@ crash.log
|
|||
crash.*.log
|
||||
|
||||
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
|
||||
# password, private keys, and other secrets. These should not be part of version
|
||||
# control as they are data points which are potentially sensitive and subject
|
||||
# password, private keys, and other secrets. These should not be part of version
|
||||
# control as they are data points which are potentially sensitive and subject
|
||||
# to change depending on the environment.
|
||||
*.tfvars
|
||||
*.tfvars.json
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
# gitignore template for RPA development using UiPath Studio
|
||||
# website: https://www.uipath.com/product/studio
|
||||
#
|
||||
# Recommended: n/a
|
||||
|
||||
# Ignore folders that could cause issues if accidentally tracked
|
||||
**/.local/**
|
||||
**/.settings/**
|
||||
**/.objects/**
|
||||
**/.tmh/**
|
||||
**/*.log
|
||||
# gitignore template for RPA development using UiPath Studio
|
||||
# website: https://www.uipath.com/product/studio
|
||||
#
|
||||
# Recommended: n/a
|
||||
|
||||
# Ignore folders that could cause issues if accidentally tracked
|
||||
**/.local/**
|
||||
**/.settings/**
|
||||
**/.objects/**
|
||||
**/.tmh/**
|
||||
**/*.log
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ icon.png
|
|||
lib/
|
||||
deps/
|
||||
obj/
|
||||
|
||||
|
||||
# Ignore operating system-specific files
|
||||
$RECYCLE.BIN/
|
||||
.Trash-1000/
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
# * all directories are related to the default directories, please adapt the .gitignore if you use customized directories
|
||||
|
||||
# Dynamic workspace settings
|
||||
# * We don't recommend to ignore the .workspace directory, because of important
|
||||
# * We don't recommend to ignore the .workspace directory, because of important
|
||||
# * project specific settings
|
||||
# * local user settings
|
||||
.workspace/ETdrive.xml
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue