[skip ci] Updated licenses and gitignores
This commit is contained in:
parent
6d4172987e
commit
0a7e8327a0
8
options/gitignore/AutoIt
Normal file
8
options/gitignore/AutoIt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Compiled Scripts
|
||||||
|
*.a3x
|
||||||
|
|
||||||
|
# Tidy Auto-Generated Backups
|
||||||
|
Backup/*
|
||||||
|
|
||||||
|
# Au3Stripper Auto-Generated Files
|
||||||
|
*_stripped.au3
|
|
@ -4,3 +4,10 @@
|
||||||
# Ignore all bazel-* symlinks. There is no full list since this can change
|
# Ignore all bazel-* symlinks. There is no full list since this can change
|
||||||
# based on the name of the directory bazel is cloned into.
|
# based on the name of the directory bazel is cloned into.
|
||||||
/bazel-*
|
/bazel-*
|
||||||
|
|
||||||
|
# Directories for the Bazel IntelliJ plugin containing the generated
|
||||||
|
# IntelliJ project files and plugin configuration. Seperate directories are
|
||||||
|
# for the IntelliJ, Android Studio and CLion versions of the plugin.
|
||||||
|
/.ijwb/
|
||||||
|
/.aswb/
|
||||||
|
/.clwb/
|
||||||
|
|
3
options/gitignore/Beef
Normal file
3
options/gitignore/Beef
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
build/
|
||||||
|
recovery/
|
||||||
|
BeefSpace_User.toml
|
|
@ -2,6 +2,7 @@
|
||||||
*/logs/log-*.php
|
*/logs/log-*.php
|
||||||
!*/logs/index.html
|
!*/logs/index.html
|
||||||
*/cache/*
|
*/cache/*
|
||||||
|
!system/cache/*
|
||||||
!*/cache/index.html
|
!*/cache/index.html
|
||||||
!*/cache/.htaccess
|
!*/cache/.htaccess
|
||||||
|
|
||||||
|
|
|
@ -1,49 +1,62 @@
|
||||||
# gitignore template for Drupal 8 projects
|
# gitignore template for Drupal 8 projects
|
||||||
#
|
#
|
||||||
# earlier versions of Drupal are tracked in `community/PHP/`
|
# earlier versions of Drupal are tracked in `community/PHP/`
|
||||||
|
#
|
||||||
|
# follows official upstream conventions:
|
||||||
|
# https://www.drupal.org/docs/develop/using-composer
|
||||||
|
|
||||||
# Ignore configuration files that may contain sensitive information
|
# Ignore configuration files that may contain sensitive information
|
||||||
/sites/*/*settings*.php
|
/web/sites/*/*settings*.php
|
||||||
/sites/*/*services*.yml
|
/web/sites/*/*services*.yml
|
||||||
|
|
||||||
# Ignore paths that may contain user-generated content
|
# Ignore paths that may contain user-generated content
|
||||||
/sites/*/files
|
/web/sites/*/files
|
||||||
/sites/*/public
|
/web/sites/*/public
|
||||||
/sites/*/private
|
/web/sites/*/private
|
||||||
/sites/*/files-public
|
/web/sites/*/files-public
|
||||||
/sites/*/files-private
|
/web/sites/*/files-private
|
||||||
|
|
||||||
# Ignore paths that may contain temporary files
|
# Ignore paths that may contain temporary files
|
||||||
/sites/*/translations
|
/web/sites/*/translations
|
||||||
/sites/*/tmp
|
/web/sites/*/tmp
|
||||||
/sites/*/cache
|
/web/sites/*/cache
|
||||||
|
|
||||||
# Ignore testing related files
|
|
||||||
/sites/simpletest
|
|
||||||
|
|
||||||
# Ignore drupal core (if not versioning drupal sources)
|
# Ignore drupal core (if not versioning drupal sources)
|
||||||
/core
|
/web/vendor
|
||||||
|
/web/core
|
||||||
|
/web/modules/README.txt
|
||||||
|
/web/profiles/README.txt
|
||||||
|
/web/sites/development.services.yml
|
||||||
|
/web/sites/example.settings.local.php
|
||||||
|
/web/sites/example.sites.php
|
||||||
|
/web/sites/README.txt
|
||||||
|
/web/themes/README.txt
|
||||||
|
/web/.csslintrc
|
||||||
|
/web/.editorconfig
|
||||||
|
/web/.eslintignore
|
||||||
|
/web/.eslintrc.json
|
||||||
|
/web/.gitattributes
|
||||||
|
/web/.htaccess
|
||||||
|
/web/.ht.router.php
|
||||||
|
/web/autoload.php
|
||||||
|
/web/composer.json
|
||||||
|
/web/composer.lock
|
||||||
|
/web/example.gitignore
|
||||||
|
/web/index.php
|
||||||
|
/web/INSTALL.txt
|
||||||
|
/web/LICENSE.txt
|
||||||
|
/web/README.txt
|
||||||
|
/web/robots.txt
|
||||||
|
/web/update.php
|
||||||
|
/web/web.config
|
||||||
|
|
||||||
|
# Ignore vendor dependencies and scripts
|
||||||
/vendor
|
/vendor
|
||||||
/modules/README.txt
|
/composer.phar
|
||||||
/profiles/README.txt
|
/composer
|
||||||
/themes/README.txt
|
/robo.phar
|
||||||
/sites/README.txt
|
/robo
|
||||||
/sites/example.sites.php
|
/drush.phar
|
||||||
/sites/example.settings.local.php
|
/drush
|
||||||
/sites/development.services.yml
|
/drupal.phar
|
||||||
/.csslintrc
|
/drupal
|
||||||
/.editorconfig
|
|
||||||
/.eslintignore
|
|
||||||
/.eslintrc.json
|
|
||||||
/.gitattributes
|
|
||||||
/.ht.router.php
|
|
||||||
/.htaccess
|
|
||||||
/autoload.php
|
|
||||||
/example.gitignore
|
|
||||||
/index.php
|
|
||||||
/INSTALL.txt
|
|
||||||
/LICENSE.txt
|
|
||||||
/README.txt
|
|
||||||
/robots.txt
|
|
||||||
/update.php
|
|
||||||
/web.config
|
|
||||||
|
|
45
options/gitignore/FlaxEngine
Normal file
45
options/gitignore/FlaxEngine
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
# Ignore Flax project files
|
||||||
|
Binaries/
|
||||||
|
Cache/
|
||||||
|
Logs/
|
||||||
|
Output/
|
||||||
|
Screenshots/
|
||||||
|
*.HotReload.*
|
||||||
|
|
||||||
|
# Ignore Visual Studio project files (generated locally)
|
||||||
|
*.csproj
|
||||||
|
*.sln
|
||||||
|
|
||||||
|
# Ignore thumbnails created by Windows
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Ignore files built by Visual Studio
|
||||||
|
*.obj
|
||||||
|
*.exe
|
||||||
|
*.pdb
|
||||||
|
*.user
|
||||||
|
*.aps
|
||||||
|
*.pch
|
||||||
|
*.vspscc
|
||||||
|
*_i.c
|
||||||
|
*_p.c
|
||||||
|
*.ncb
|
||||||
|
*.suo
|
||||||
|
*.tlb
|
||||||
|
*.tlh
|
||||||
|
*.bak
|
||||||
|
*.cache
|
||||||
|
*.ilk
|
||||||
|
*.log
|
||||||
|
[Bb]in
|
||||||
|
[Dd]ebug*/
|
||||||
|
*.lib
|
||||||
|
*.sbr
|
||||||
|
obj/
|
||||||
|
[Rr]elease*/
|
||||||
|
_ReSharper*/
|
||||||
|
[Tt]est[Rr]esult*
|
||||||
|
.vs/
|
||||||
|
|
||||||
|
# Ignore Nuget packages folder
|
||||||
|
packages/
|
23
options/gitignore/Go.AllowList
Normal file
23
options/gitignore/Go.AllowList
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# Allowlisting gitignore template for GO projects prevents us
|
||||||
|
# from adding various unwanted local files, such as generated
|
||||||
|
# files, developer configurations or IDE-specific files etc.
|
||||||
|
#
|
||||||
|
# Recommended: Go.AllowList.gitignore
|
||||||
|
|
||||||
|
# Ignore everything
|
||||||
|
*
|
||||||
|
|
||||||
|
# But not these files...
|
||||||
|
!/.gitignore
|
||||||
|
|
||||||
|
!*.go
|
||||||
|
!go.sum
|
||||||
|
!go.mod
|
||||||
|
|
||||||
|
!README.md
|
||||||
|
!LICENSE
|
||||||
|
|
||||||
|
# !Makefile
|
||||||
|
|
||||||
|
# ...even if they are in subdirectories
|
||||||
|
!*/
|
|
@ -1,6 +1,8 @@
|
||||||
# Generated files by hugo
|
# Generated files by hugo
|
||||||
/public/
|
/public/
|
||||||
/resources/_gen/
|
/resources/_gen/
|
||||||
|
/assets/jsconfig.json
|
||||||
|
hugo_stats.json
|
||||||
|
|
||||||
# Executable may be added to repository
|
# Executable may be added to repository
|
||||||
hugo.exe
|
hugo.exe
|
||||||
|
|
|
@ -61,6 +61,9 @@ atlassian-ide-plugin.xml
|
||||||
# Cursive Clojure plugin
|
# Cursive Clojure plugin
|
||||||
.idea/replstate.xml
|
.idea/replstate.xml
|
||||||
|
|
||||||
|
# SonarLint plugin
|
||||||
|
.idea/sonarlint/
|
||||||
|
|
||||||
# Crashlytics plugin (for Android Studio and IntelliJ)
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
com_crashlytics_export_strings.xml
|
com_crashlytics_export_strings.xml
|
||||||
crashlytics.properties
|
crashlytics.properties
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
*.bck
|
*.bck
|
||||||
*.kicad_pcb-bak
|
*.kicad_pcb-bak
|
||||||
*.kicad_sch-bak
|
*.kicad_sch-bak
|
||||||
|
*-backups
|
||||||
*.kicad_prl
|
*.kicad_prl
|
||||||
*.sch-bak
|
*.sch-bak
|
||||||
*~
|
*~
|
||||||
|
|
|
@ -72,7 +72,8 @@ web_modules/
|
||||||
# Yarn Integrity file
|
# Yarn Integrity file
|
||||||
.yarn-integrity
|
.yarn-integrity
|
||||||
|
|
||||||
# dotenv environment variables file
|
# dotenv environment variable files
|
||||||
|
.env
|
||||||
.env.development.local
|
.env.development.local
|
||||||
.env.test.local
|
.env.test.local
|
||||||
.env.production.local
|
.env.production.local
|
||||||
|
|
|
@ -94,6 +94,13 @@ ipython_config.py
|
||||||
# install all needed dependencies.
|
# install all needed dependencies.
|
||||||
#Pipfile.lock
|
#Pipfile.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
|
||||||
|
|
||||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
||||||
__pypackages__/
|
__pypackages__/
|
||||||
|
|
||||||
|
@ -139,7 +146,7 @@ cython_debug/
|
||||||
|
|
||||||
# PyCharm
|
# PyCharm
|
||||||
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
|
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
|
||||||
# be found at https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
|
# 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
|
# 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.
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
#.idea/
|
#.idea/
|
||||||
|
|
|
@ -44,3 +44,6 @@ docs/
|
||||||
|
|
||||||
# translation temp files
|
# translation temp files
|
||||||
po/*~
|
po/*~
|
||||||
|
|
||||||
|
# RStudio Connect folder
|
||||||
|
rsconnect/
|
||||||
|
|
2
options/gitignore/Syncthing
Normal file
2
options/gitignore/Syncthing
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# Syncthing caches
|
||||||
|
.stversions
|
|
@ -118,6 +118,10 @@ acs-*.bib
|
||||||
# uncomment this for glossaries-extra (will ignore makeindex's style files!)
|
# uncomment this for glossaries-extra (will ignore makeindex's style files!)
|
||||||
# *.ist
|
# *.ist
|
||||||
|
|
||||||
|
# gnuplot
|
||||||
|
*.gnuplot
|
||||||
|
*.table
|
||||||
|
|
||||||
# gnuplottex
|
# gnuplottex
|
||||||
*-gnuplottex-*
|
*-gnuplottex-*
|
||||||
|
|
||||||
|
@ -192,6 +196,9 @@ _minted*
|
||||||
# scrwfile
|
# scrwfile
|
||||||
*.wrt
|
*.wrt
|
||||||
|
|
||||||
|
# svg
|
||||||
|
svg-inkscape/
|
||||||
|
|
||||||
# sympy
|
# sympy
|
||||||
*.sout
|
*.sout
|
||||||
*.sympy
|
*.sympy
|
||||||
|
@ -216,6 +223,9 @@ pythontex-files-*/
|
||||||
*.md5
|
*.md5
|
||||||
*.auxlock
|
*.auxlock
|
||||||
|
|
||||||
|
# titletoc
|
||||||
|
*.ptc
|
||||||
|
|
||||||
# todonotes
|
# todonotes
|
||||||
*.tdo
|
*.tdo
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
# Crash log files
|
# Crash log files
|
||||||
crash.log
|
crash.log
|
||||||
|
crash.*.log
|
||||||
|
|
||||||
# Exclude all .tfvars files, which are likely to contain sentitive data, such as
|
# Exclude all .tfvars files, which are likely to contain sentitive data, such as
|
||||||
# password, private keys, and other secrets. These should not be part of version
|
# password, private keys, and other secrets. These should not be part of version
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
## Ignore Umbraco files/folders generated for each instance
|
## Ignore Umbraco files/folders generated for each instance
|
||||||
##
|
##
|
||||||
## Get latest from https://github.com/github/gitignore/blob/master/Umbraco.gitignore
|
## Get latest from https://github.com/github/gitignore/blob/main/Umbraco.gitignore
|
||||||
|
|
||||||
# Note: VisualStudio gitignore rules may also be relevant
|
# Note: VisualStudio gitignore rules may also be relevant
|
||||||
|
|
||||||
|
@ -19,6 +19,10 @@
|
||||||
## Uncomment this line if you think it fits the way you work on your project.
|
## Uncomment this line if you think it fits the way you work on your project.
|
||||||
## **/[Uu]mbraco/
|
## **/[Uu]mbraco/
|
||||||
|
|
||||||
|
## 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/
|
||||||
|
|
||||||
# Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder)
|
# Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder)
|
||||||
# Make sure to include details from VisualStudio.gitignore BEFORE this
|
# Make sure to include details from VisualStudio.gitignore BEFORE this
|
||||||
!**/App_Data/[Pp]ackages/*
|
!**/App_Data/[Pp]ackages/*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# This .gitignore file should be placed at the root of your Unity project directory
|
# This .gitignore file should be placed at the root of your Unity project directory
|
||||||
#
|
#
|
||||||
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
|
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
|
||||||
#
|
#
|
||||||
/[Ll]ibrary/
|
/[Ll]ibrary/
|
||||||
/[Tt]emp/
|
/[Tt]emp/
|
||||||
|
@ -17,9 +17,6 @@
|
||||||
# Recordings can get excessive in size
|
# Recordings can get excessive in size
|
||||||
/[Rr]ecordings/
|
/[Rr]ecordings/
|
||||||
|
|
||||||
# Asset meta data should only be ignored when the corresponding asset is also ignored
|
|
||||||
!/[Aa]ssets/**/*.meta
|
|
||||||
|
|
||||||
# Uncomment this line if you wish to ignore the asset store tools plugin
|
# Uncomment this line if you wish to ignore the asset store tools plugin
|
||||||
# /[Aa]ssets/AssetStoreTools*
|
# /[Aa]ssets/AssetStoreTools*
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
## Ignore Visual Studio temporary files, build results, and
|
## Ignore Visual Studio temporary files, build results, and
|
||||||
## files generated by popular Visual Studio add-ons.
|
## files generated by popular Visual Studio add-ons.
|
||||||
##
|
##
|
||||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
|
||||||
|
|
||||||
# User-specific files
|
# User-specific files
|
||||||
*.rsuser
|
*.rsuser
|
||||||
|
@ -361,6 +361,9 @@ ASALocalRun/
|
||||||
# Local History for Visual Studio
|
# Local History for Visual Studio
|
||||||
.localhistory/
|
.localhistory/
|
||||||
|
|
||||||
|
# Visual Studio History (VSHistory) files
|
||||||
|
.vshistory/
|
||||||
|
|
||||||
# BeatPulse healthcheck temp database
|
# BeatPulse healthcheck temp database
|
||||||
healthchecksdb
|
healthchecksdb
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
.vscode/*
|
.vscode/
|
||||||
!.vscode/settings.json
|
!.vscode/settings.json
|
||||||
!.vscode/tasks.json
|
!.vscode/tasks.json
|
||||||
!.vscode/launch.json
|
!.vscode/launch.json
|
||||||
!.vscode/extensions.json
|
!.vscode/extensions.json
|
||||||
*.code-workspace
|
!.vscode/*.code-snippets
|
||||||
|
|
||||||
# Local History for Visual Studio Code
|
# Local History for Visual Studio Code
|
||||||
.history/
|
.history/
|
||||||
|
|
||||||
|
# Built Visual Studio Code Extensions
|
||||||
|
*.vsix
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Wordpress - ignore core, configuration, examples, uploads and logs.
|
# Wordpress - ignore core, configuration, examples, uploads and logs.
|
||||||
# https://github.com/github/gitignore/blob/master/WordPress.gitignore
|
# https://github.com/github/gitignore/blob/main/WordPress.gitignore
|
||||||
|
|
||||||
# Core
|
# Core
|
||||||
#
|
#
|
||||||
|
|
45
options/gitignore/uVision
Normal file
45
options/gitignore/uVision
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
# git ignore file for Keil µVision Project
|
||||||
|
|
||||||
|
# µVision 5 and µVision 4 Project screen layout file
|
||||||
|
*.uvguix.*
|
||||||
|
*.uvgui.*
|
||||||
|
|
||||||
|
# Listing Files
|
||||||
|
*.i
|
||||||
|
*.lst
|
||||||
|
*.m51
|
||||||
|
*.m66
|
||||||
|
*.map
|
||||||
|
|
||||||
|
# Object Files
|
||||||
|
*.axf
|
||||||
|
*.b[0-2][0-9]
|
||||||
|
*.b3[0-1]
|
||||||
|
*.bak
|
||||||
|
*.build_log.htm
|
||||||
|
*.crf
|
||||||
|
*.d
|
||||||
|
*.dep
|
||||||
|
*.elf
|
||||||
|
*.htm
|
||||||
|
*.iex
|
||||||
|
*.lnp
|
||||||
|
*.o
|
||||||
|
*.obj
|
||||||
|
*.sbr
|
||||||
|
|
||||||
|
# Firmware Files
|
||||||
|
*.bin
|
||||||
|
*.h86
|
||||||
|
*.hex
|
||||||
|
|
||||||
|
# Build Files
|
||||||
|
.bat
|
||||||
|
|
||||||
|
# Debugger Files
|
||||||
|
.ini
|
||||||
|
|
||||||
|
# JLink Files
|
||||||
|
JLinkLog.txt
|
||||||
|
|
||||||
|
# Other Files
|
Loading…
Reference in New Issue
Block a user