aboutsummaryrefslogtreecommitdiffstats
path: root/options/gitignore
diff options
context:
space:
mode:
authorGiteaBot <teabot@gitea.io>2021-05-16 00:25:04 +0000
committerGiteaBot <teabot@gitea.io>2021-05-16 00:25:04 +0000
commit41136db47e3b3222cef6e77347ae6bbe87947038 (patch)
treed5e82b75a8b0bbdf130fae8e8f48fd4fd7e699aa /options/gitignore
parent58646cab227cb206e3d08fc1b37b27f30e5808e7 (diff)
downloadgitea-41136db47e3b3222cef6e77347ae6bbe87947038.tar.gz
gitea-41136db47e3b3222cef6e77347ae6bbe87947038.zip
[skip ci] Updated licenses and gitignores
Diffstat (limited to 'options/gitignore')
-rw-r--r--options/gitignore/AltiumDesigner20
-rw-r--r--options/gitignore/Autotools1
-rw-r--r--options/gitignore/Coq4
-rw-r--r--options/gitignore/Dart3
-rw-r--r--options/gitignore/IAR_EWARM2
-rw-r--r--options/gitignore/JetBrains3
-rw-r--r--options/gitignore/ROS229
-rw-r--r--options/gitignore/Rust3
-rw-r--r--options/gitignore/Scala3
-rw-r--r--options/gitignore/Strapi135
-rw-r--r--options/gitignore/TeX4
-rw-r--r--options/gitignore/TwinCAT325
-rw-r--r--options/gitignore/V14
-rw-r--r--options/gitignore/VisualStudio26
14 files changed, 270 insertions, 2 deletions
diff --git a/options/gitignore/AltiumDesigner b/options/gitignore/AltiumDesigner
new file mode 100644
index 0000000000..5e410492cb
--- /dev/null
+++ b/options/gitignore/AltiumDesigner
@@ -0,0 +1,20 @@
+# For PCBs designed using Altium Designer
+# Website: https://www.altium.com/altium-designer/
+
+# Directories containing cache data
+History
+__Previews
+
+# Directories containing logs and generated outputs
+Project\ Logs*
+Project\ Outputs*
+
+# Misc files generated by altium
+debug.log
+Status\ Report.txt
+*.PcbDoc.htm
+*.SchDocPreview
+*.PcbDocPreview
+
+# Lock files sometimes left behind
+.~lock.*
diff --git a/options/gitignore/Autotools b/options/gitignore/Autotools
index f2c137d046..d9ecd8928a 100644
--- a/options/gitignore/Autotools
+++ b/options/gitignore/Autotools
@@ -16,6 +16,7 @@ autom4te.cache
/autoscan-*.log
/aclocal.m4
/compile
+/config.cache
/config.guess
/config.h.in
/config.log
diff --git a/options/gitignore/Coq b/options/gitignore/Coq
index 829ac44a1c..66596b22ed 100644
--- a/options/gitignore/Coq
+++ b/options/gitignore/Coq
@@ -10,6 +10,7 @@
*.glob
*.ml.d
*.ml4.d
+*.mlg.d
*.mli.d
*.mllib.d
*.mlpack.d
@@ -20,7 +21,7 @@
*.vo
*.vok
*.vos
-.coq-native/
+.coq-native
.csdp.cache
.lia.cache
.nia.cache
@@ -31,6 +32,7 @@ lia.cache
nia.cache
nlia.cache
nra.cache
+native_compute_profile_*.data
# generated timing files
*.timing.diff
diff --git a/options/gitignore/Dart b/options/gitignore/Dart
index 6d21af37c9..3a83c2f087 100644
--- a/options/gitignore/Dart
+++ b/options/gitignore/Dart
@@ -11,6 +11,9 @@ pubspec.lock
# If you don't generate documentation locally you can remove this line.
doc/api/
+# dotenv environment variables file
+.env*
+
# Avoid committing generated Javascript files:
*.dart.js
*.info.json # Produced by the --dump-info flag.
diff --git a/options/gitignore/IAR_EWARM b/options/gitignore/IAR_EWARM
index 13ed9a0b19..e456471f66 100644
--- a/options/gitignore/IAR_EWARM
+++ b/options/gitignore/IAR_EWARM
@@ -1,5 +1,5 @@
# gitignore template for the IAR EWARM
-# website: https://www.iar.com/
+# website: https://www.iar.com/knowledge/support/technical-notes/ide/which-files-should-be-version-controlled/
# Some tools will put the EWARM files
# under a subdirectory with the same name
diff --git a/options/gitignore/JetBrains b/options/gitignore/JetBrains
index 8da0824ba5..0a16fa718c 100644
--- a/options/gitignore/JetBrains
+++ b/options/gitignore/JetBrains
@@ -8,6 +8,9 @@
.idea/**/dictionaries
.idea/**/shelf
+# AWS User-specific
+.idea/**/aws.xml
+
# Generated files
.idea/**/contentModel.xml
diff --git a/options/gitignore/ROS2 b/options/gitignore/ROS2
new file mode 100644
index 0000000000..6cc824d8e6
--- /dev/null
+++ b/options/gitignore/ROS2
@@ -0,0 +1,29 @@
+install/
+log/
+build/
+
+# Ignore generated docs
+*.dox
+*.wikidoc
+
+# eclipse stuff
+.project
+.cproject
+
+# qcreator stuff
+CMakeLists.txt.user
+
+srv/_*.py
+*.pcd
+*.pyc
+qtcreator-*
+*.user
+
+*~
+
+# Emacs
+.#*
+
+# Colcon custom files
+COLCON_IGNORE
+AMENT_IGNORE
diff --git a/options/gitignore/Rust b/options/gitignore/Rust
index ff47c2d77d..6985cf1bd0 100644
--- a/options/gitignore/Rust
+++ b/options/gitignore/Rust
@@ -9,3 +9,6 @@ Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
+
+# MSVC Windows builds of rustc generate these, which store debugging information
+*.pdb
diff --git a/options/gitignore/Scala b/options/gitignore/Scala
index 9c07d4ae98..7169cab195 100644
--- a/options/gitignore/Scala
+++ b/options/gitignore/Scala
@@ -1,2 +1,5 @@
*.class
*.log
+
+# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
+hs_err_pid*
diff --git a/options/gitignore/Strapi b/options/gitignore/Strapi
new file mode 100644
index 0000000000..70e6542590
--- /dev/null
+++ b/options/gitignore/Strapi
@@ -0,0 +1,135 @@
+############################
+# OS X
+############################
+
+.DS_Store
+.AppleDouble
+.LSOverride
+Icon
+.Spotlight-V100
+.Trashes
+._*
+
+
+############################
+# Linux
+############################
+
+*~
+
+
+############################
+# Windows
+############################
+
+Thumbs.db
+ehthumbs.db
+Desktop.ini
+$RECYCLE.BIN/
+*.cab
+*.msi
+*.msm
+*.msp
+
+
+############################
+# Packages
+############################
+
+*.7z
+*.csv
+*.dat
+*.dmg
+*.gz
+*.iso
+*.jar
+*.rar
+*.tar
+*.zip
+*.com
+*.class
+*.dll
+*.exe
+*.o
+*.seed
+*.so
+*.swo
+*.swp
+*.swn
+*.swm
+*.out
+*.pid
+
+
+############################
+# Logs and databases
+############################
+
+.tmp
+*.log
+*.sql
+*.sqlite
+
+
+############################
+# Misc.
+############################
+
+*#
+.idea
+nbproject
+.vscode/
+
+
+############################
+# Node.js
+############################
+
+lib-cov
+lcov.info
+pids
+logs
+results
+build
+node_modules
+.node_history
+package-lock.json
+**/package-lock.json
+!docs/package-lock.json
+*.heapsnapshot
+
+
+############################
+# Tests
+############################
+
+testApp
+coverage
+cypress/screenshots
+cypress/videos
+
+
+############################
+# Documentation
+############################
+
+dist
+
+############################
+# Builds
+############################
+
+packages/strapi-generate-new/files/public/
+
+############################
+# Example app
+############################
+
+.dev
+# *.cache
+
+############################
+# Visual Studio Code
+############################
+
+front-workspace.code-workspace
diff --git a/options/gitignore/TeX b/options/gitignore/TeX
index 8a42ebbd98..237f49ebaa 100644
--- a/options/gitignore/TeX
+++ b/options/gitignore/TeX
@@ -120,6 +120,7 @@ acs-*.bib
# gregoriotex
*.gaux
+*.glog
*.gtex
# htlatex
@@ -166,6 +167,9 @@ _minted*
# morewrites
*.mw
+# newpax
+*.newpax
+
# nomencl
*.nlg
*.nlo
diff --git a/options/gitignore/TwinCAT3 b/options/gitignore/TwinCAT3
new file mode 100644
index 0000000000..7bd6f87505
--- /dev/null
+++ b/options/gitignore/TwinCAT3
@@ -0,0 +1,25 @@
+# gitignore template for TwinCAT3
+# website: https://www.beckhoff.com/twincat3/
+#
+# Recommended: VisualStudio.gitignore
+
+# TwinCAT files
+*.tpy
+*.tclrs
+*.compiled-library
+*.compileinfo
+# Don't include the tmc-file rule if either of the following is true:
+# 1. You've got TwinCAT C++ projects, as the information in the TMC-file is created manually for the C++ projects (in that case, only (manually) ignore the tmc-files for the PLC projects)
+# 2. You've created a standalone PLC-project and added events to it, as these are stored in the TMC-file.
+*.tmc
+*.tmcRefac
+*.library
+*.project.~u
+*.tsproj.bak
+*.xti.bak
+LineIDs.dbg
+LineIDs.dbg.bak
+_Boot/
+_CompileInfo/
+_Libraries/
+_ModuleInstall/ \ No newline at end of file
diff --git a/options/gitignore/V b/options/gitignore/V
new file mode 100644
index 0000000000..bc0d4f3aaa
--- /dev/null
+++ b/options/gitignore/V
@@ -0,0 +1,14 @@
+*
+!*/
+!*.*
+*.exe
+*.o
+*.so
+*.tmp.c
+*.exp
+*.ilk
+*.pdb
+*.dll
+*.lib
+*.bak
+*.out
diff --git a/options/gitignore/VisualStudio b/options/gitignore/VisualStudio
index 1ee53850b8..34c8dee453 100644
--- a/options/gitignore/VisualStudio
+++ b/options/gitignore/VisualStudio
@@ -90,6 +90,7 @@ StyleCopReport.xml
*.tmp_proj
*_wpftmp.csproj
*.log
+*.tlog
*.vspscc
*.vssscc
.builds
@@ -205,6 +206,9 @@ PublishScripts/
*.nuget.props
*.nuget.targets
+# Nuget personal access tokens and Credentials
+nuget.config
+
# Microsoft Azure Build Output
csx/
*.build.csdef
@@ -360,3 +364,25 @@ MigrationBackup/
# Fody - auto-generated XML schema
FodyWeavers.xsd
+
+# VS Code files for those working on multiple tools
+.vscode/*
+!.vscode/settings.json
+!.vscode/tasks.json
+!.vscode/launch.json
+!.vscode/extensions.json
+*.code-workspace
+
+# Local History for Visual Studio Code
+.history/
+
+# Windows Installer files from build outputs
+*.cab
+*.msi
+*.msix
+*.msm
+*.msp
+
+# JetBrains Rider
+.idea/
+*.sln.iml