Skip to content

Commit 0a7e832

Browse files
committed
[skip ci] Updated licenses and gitignores
1 parent 6d41729 commit 0a7e832

22 files changed

+230
-48
lines changed

options/gitignore/AutoIt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Compiled Scripts
2+
*.a3x
3+
4+
# Tidy Auto-Generated Backups
5+
Backup/*
6+
7+
# Au3Stripper Auto-Generated Files
8+
*_stripped.au3

options/gitignore/Bazel

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,10 @@
44
# Ignore all bazel-* symlinks. There is no full list since this can change
55
# based on the name of the directory bazel is cloned into.
66
/bazel-*
7+
8+
# Directories for the Bazel IntelliJ plugin containing the generated
9+
# IntelliJ project files and plugin configuration. Seperate directories are
10+
# for the IntelliJ, Android Studio and CLion versions of the plugin.
11+
/.ijwb/
12+
/.aswb/
13+
/.clwb/

options/gitignore/Beef

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build/
2+
recovery/
3+
BeefSpace_User.toml

options/gitignore/CodeIgniter

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
*/logs/log-*.php
33
!*/logs/index.html
44
*/cache/*
5+
!system/cache/*
56
!*/cache/index.html
67
!*/cache/.htaccess
78

options/gitignore/Drupal

Lines changed: 50 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,62 @@
11
# gitignore template for Drupal 8 projects
22
#
33
# earlier versions of Drupal are tracked in `community/PHP/`
4+
#
5+
# follows official upstream conventions:
6+
# https://www.drupal.org/docs/develop/using-composer
47

58
# Ignore configuration files that may contain sensitive information
6-
/sites/*/*settings*.php
7-
/sites/*/*services*.yml
9+
/web/sites/*/*settings*.php
10+
/web/sites/*/*services*.yml
811

912
# Ignore paths that may contain user-generated content
10-
/sites/*/files
11-
/sites/*/public
12-
/sites/*/private
13-
/sites/*/files-public
14-
/sites/*/files-private
13+
/web/sites/*/files
14+
/web/sites/*/public
15+
/web/sites/*/private
16+
/web/sites/*/files-public
17+
/web/sites/*/files-private
1518

1619
# Ignore paths that may contain temporary files
17-
/sites/*/translations
18-
/sites/*/tmp
19-
/sites/*/cache
20-
21-
# Ignore testing related files
22-
/sites/simpletest
20+
/web/sites/*/translations
21+
/web/sites/*/tmp
22+
/web/sites/*/cache
2323

2424
# Ignore drupal core (if not versioning drupal sources)
25-
/core
25+
/web/vendor
26+
/web/core
27+
/web/modules/README.txt
28+
/web/profiles/README.txt
29+
/web/sites/development.services.yml
30+
/web/sites/example.settings.local.php
31+
/web/sites/example.sites.php
32+
/web/sites/README.txt
33+
/web/themes/README.txt
34+
/web/.csslintrc
35+
/web/.editorconfig
36+
/web/.eslintignore
37+
/web/.eslintrc.json
38+
/web/.gitattributes
39+
/web/.htaccess
40+
/web/.ht.router.php
41+
/web/autoload.php
42+
/web/composer.json
43+
/web/composer.lock
44+
/web/example.gitignore
45+
/web/index.php
46+
/web/INSTALL.txt
47+
/web/LICENSE.txt
48+
/web/README.txt
49+
/web/robots.txt
50+
/web/update.php
51+
/web/web.config
52+
53+
# Ignore vendor dependencies and scripts
2654
/vendor
27-
/modules/README.txt
28-
/profiles/README.txt
29-
/themes/README.txt
30-
/sites/README.txt
31-
/sites/example.sites.php
32-
/sites/example.settings.local.php
33-
/sites/development.services.yml
34-
/.csslintrc
35-
/.editorconfig
36-
/.eslintignore
37-
/.eslintrc.json
38-
/.gitattributes
39-
/.ht.router.php
40-
/.htaccess
41-
/autoload.php
42-
/example.gitignore
43-
/index.php
44-
/INSTALL.txt
45-
/LICENSE.txt
46-
/README.txt
47-
/robots.txt
48-
/update.php
49-
/web.config
55+
/composer.phar
56+
/composer
57+
/robo.phar
58+
/robo
59+
/drush.phar
60+
/drush
61+
/drupal.phar
62+
/drupal

options/gitignore/FlaxEngine

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Ignore Flax project files
2+
Binaries/
3+
Cache/
4+
Logs/
5+
Output/
6+
Screenshots/
7+
*.HotReload.*
8+
9+
# Ignore Visual Studio project files (generated locally)
10+
*.csproj
11+
*.sln
12+
13+
# Ignore thumbnails created by Windows
14+
Thumbs.db
15+
16+
# Ignore files built by Visual Studio
17+
*.obj
18+
*.exe
19+
*.pdb
20+
*.user
21+
*.aps
22+
*.pch
23+
*.vspscc
24+
*_i.c
25+
*_p.c
26+
*.ncb
27+
*.suo
28+
*.tlb
29+
*.tlh
30+
*.bak
31+
*.cache
32+
*.ilk
33+
*.log
34+
[Bb]in
35+
[Dd]ebug*/
36+
*.lib
37+
*.sbr
38+
obj/
39+
[Rr]elease*/
40+
_ReSharper*/
41+
[Tt]est[Rr]esult*
42+
.vs/
43+
44+
# Ignore Nuget packages folder
45+
packages/

options/gitignore/Go.AllowList

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Allowlisting gitignore template for GO projects prevents us
2+
# from adding various unwanted local files, such as generated
3+
# files, developer configurations or IDE-specific files etc.
4+
#
5+
# Recommended: Go.AllowList.gitignore
6+
7+
# Ignore everything
8+
*
9+
10+
# But not these files...
11+
!/.gitignore
12+
13+
!*.go
14+
!go.sum
15+
!go.mod
16+
17+
!README.md
18+
!LICENSE
19+
20+
# !Makefile
21+
22+
# ...even if they are in subdirectories
23+
!*/

options/gitignore/Hugo

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Generated files by hugo
22
/public/
33
/resources/_gen/
4+
/assets/jsconfig.json
5+
hugo_stats.json
46

57
# Executable may be added to repository
68
hugo.exe

options/gitignore/JetBrains

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ atlassian-ide-plugin.xml
6161
# Cursive Clojure plugin
6262
.idea/replstate.xml
6363

64+
# SonarLint plugin
65+
.idea/sonarlint/
66+
6467
# Crashlytics plugin (for Android Studio and IntelliJ)
6568
com_crashlytics_export_strings.xml
6669
crashlytics.properties

options/gitignore/KiCad

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*.bck
88
*.kicad_pcb-bak
99
*.kicad_sch-bak
10+
*-backups
1011
*.kicad_prl
1112
*.sch-bak
1213
*~

options/gitignore/Node

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ web_modules/
7272
# Yarn Integrity file
7373
.yarn-integrity
7474

75-
# dotenv environment variables file
75+
# dotenv environment variable files
76+
.env
7677
.env.development.local
7778
.env.test.local
7879
.env.production.local

options/gitignore/Python

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,13 @@ ipython_config.py
9494
# install all needed dependencies.
9595
#Pipfile.lock
9696

97+
# poetry
98+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99+
# This is especially recommended for binary packages to ensure reproducibility, and is more
100+
# commonly ignored for libraries.
101+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102+
#poetry.lock
103+
97104
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
98105
__pypackages__/
99106

@@ -139,7 +146,7 @@ cython_debug/
139146

140147
# PyCharm
141148
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
142-
# be found at https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
149+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
143150
# and can be added to the global gitignore or merged into this file. For a more nuclear
144151
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
145152
#.idea/

options/gitignore/R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,6 @@ docs/
4444

4545
# translation temp files
4646
po/*~
47+
48+
# RStudio Connect folder
49+
rsconnect/

options/gitignore/Syncthing

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Syncthing caches
2+
.stversions

options/gitignore/TeX

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ acs-*.bib
118118
# uncomment this for glossaries-extra (will ignore makeindex's style files!)
119119
# *.ist
120120

121+
# gnuplot
122+
*.gnuplot
123+
*.table
124+
121125
# gnuplottex
122126
*-gnuplottex-*
123127

@@ -192,6 +196,9 @@ _minted*
192196
# scrwfile
193197
*.wrt
194198

199+
# svg
200+
svg-inkscape/
201+
195202
# sympy
196203
*.sout
197204
*.sympy
@@ -216,6 +223,9 @@ pythontex-files-*/
216223
*.md5
217224
*.auxlock
218225

226+
# titletoc
227+
*.ptc
228+
219229
# todonotes
220230
*.tdo
221231

options/gitignore/Terraform

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
# Crash log files
99
crash.log
10+
crash.*.log
1011

1112
# Exclude all .tfvars files, which are likely to contain sentitive data, such as
1213
# password, private keys, and other secrets. These should not be part of version

options/gitignore/Umbraco

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Ignore Umbraco files/folders generated for each instance
22
##
3-
## Get latest from https://github.com/github/gitignore/blob/master/Umbraco.gitignore
3+
## Get latest from https://github.com/github/gitignore/blob/main/Umbraco.gitignore
44

55
# Note: VisualStudio gitignore rules may also be relevant
66

@@ -19,6 +19,10 @@
1919
## Uncomment this line if you think it fits the way you work on your project.
2020
## **/[Uu]mbraco/
2121

22+
## The [Mm]edia/ folder contains content. Content may vary by environment and should therefore not be added to source control.
23+
## Uncomment this line if you think it fits the way you work on your project.
24+
## **/[Mm]edia/
25+
2226
# Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder)
2327
# Make sure to include details from VisualStudio.gitignore BEFORE this
2428
!**/App_Data/[Pp]ackages/*

options/gitignore/Unity

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This .gitignore file should be placed at the root of your Unity project directory
22
#
3-
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
3+
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
44
#
55
/[Ll]ibrary/
66
/[Tt]emp/
@@ -17,9 +17,6 @@
1717
# Recordings can get excessive in size
1818
/[Rr]ecordings/
1919

20-
# Asset meta data should only be ignored when the corresponding asset is also ignored
21-
!/[Aa]ssets/**/*.meta
22-
2320
# Uncomment this line if you wish to ignore the asset store tools plugin
2421
# /[Aa]ssets/AssetStoreTools*
2522

options/gitignore/VisualStudio

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
33
##
4-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
4+
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
55

66
# User-specific files
77
*.rsuser
@@ -361,6 +361,9 @@ ASALocalRun/
361361
# Local History for Visual Studio
362362
.localhistory/
363363

364+
# Visual Studio History (VSHistory) files
365+
.vshistory/
366+
364367
# BeatPulse healthcheck temp database
365368
healthchecksdb
366369

options/gitignore/VisualStudioCode

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
.vscode/*
1+
.vscode/
22
!.vscode/settings.json
33
!.vscode/tasks.json
44
!.vscode/launch.json
55
!.vscode/extensions.json
6-
*.code-workspace
6+
!.vscode/*.code-snippets
77

88
# Local History for Visual Studio Code
99
.history/
10+
11+
# Built Visual Studio Code Extensions
12+
*.vsix

options/gitignore/WordPress

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Wordpress - ignore core, configuration, examples, uploads and logs.
2-
# https://github.com/github/gitignore/blob/master/WordPress.gitignore
2+
# https://github.com/github/gitignore/blob/main/WordPress.gitignore
33

44
# Core
55
#

0 commit comments

Comments
 (0)