Skip to content

Commit 41136db

Browse files
committed
[skip ci] Updated licenses and gitignores
1 parent 58646ca commit 41136db

19 files changed

+350
-3
lines changed

options/gitignore/AltiumDesigner

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# For PCBs designed using Altium Designer
2+
# Website: https://www.altium.com/altium-designer/
3+
4+
# Directories containing cache data
5+
History
6+
__Previews
7+
8+
# Directories containing logs and generated outputs
9+
Project\ Logs*
10+
Project\ Outputs*
11+
12+
# Misc files generated by altium
13+
debug.log
14+
Status\ Report.txt
15+
*.PcbDoc.htm
16+
*.SchDocPreview
17+
*.PcbDocPreview
18+
19+
# Lock files sometimes left behind
20+
.~lock.*

options/gitignore/Autotools

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ autom4te.cache
1616
/autoscan-*.log
1717
/aclocal.m4
1818
/compile
19+
/config.cache
1920
/config.guess
2021
/config.h.in
2122
/config.log

options/gitignore/Coq

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
*.glob
1111
*.ml.d
1212
*.ml4.d
13+
*.mlg.d
1314
*.mli.d
1415
*.mllib.d
1516
*.mlpack.d
@@ -20,7 +21,7 @@
2021
*.vo
2122
*.vok
2223
*.vos
23-
.coq-native/
24+
.coq-native
2425
.csdp.cache
2526
.lia.cache
2627
.nia.cache
@@ -31,6 +32,7 @@ lia.cache
3132
nia.cache
3233
nlia.cache
3334
nra.cache
35+
native_compute_profile_*.data
3436

3537
# generated timing files
3638
*.timing.diff

options/gitignore/Dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ pubspec.lock
1111
# If you don't generate documentation locally you can remove this line.
1212
doc/api/
1313

14+
# dotenv environment variables file
15+
.env*
16+
1417
# Avoid committing generated Javascript files:
1518
*.dart.js
1619
*.info.json # Produced by the --dump-info flag.

options/gitignore/IAR_EWARM

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# gitignore template for the IAR EWARM
2-
# website: https://www.iar.com/
2+
# website: https://www.iar.com/knowledge/support/technical-notes/ide/which-files-should-be-version-controlled/
33

44
# Some tools will put the EWARM files
55
# under a subdirectory with the same name

options/gitignore/JetBrains

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
.idea/**/dictionaries
99
.idea/**/shelf
1010

11+
# AWS User-specific
12+
.idea/**/aws.xml
13+
1114
# Generated files
1215
.idea/**/contentModel.xml
1316

options/gitignore/ROS2

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
install/
2+
log/
3+
build/
4+
5+
# Ignore generated docs
6+
*.dox
7+
*.wikidoc
8+
9+
# eclipse stuff
10+
.project
11+
.cproject
12+
13+
# qcreator stuff
14+
CMakeLists.txt.user
15+
16+
srv/_*.py
17+
*.pcd
18+
*.pyc
19+
qtcreator-*
20+
*.user
21+
22+
*~
23+
24+
# Emacs
25+
.#*
26+
27+
# Colcon custom files
28+
COLCON_IGNORE
29+
AMENT_IGNORE

options/gitignore/Rust

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ Cargo.lock
99

1010
# These are backup files generated by rustfmt
1111
**/*.rs.bk
12+
13+
# MSVC Windows builds of rustc generate these, which store debugging information
14+
*.pdb

options/gitignore/Scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
*.class
22
*.log
3+
4+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
5+
hs_err_pid*

options/gitignore/Strapi

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
############################
2+
# OS X
3+
############################
4+
5+
.DS_Store
6+
.AppleDouble
7+
.LSOverride
8+
Icon
9+
.Spotlight-V100
10+
.Trashes
11+
._*
12+
13+
14+
############################
15+
# Linux
16+
############################
17+
18+
*~
19+
20+
21+
############################
22+
# Windows
23+
############################
24+
25+
Thumbs.db
26+
ehthumbs.db
27+
Desktop.ini
28+
$RECYCLE.BIN/
29+
*.cab
30+
*.msi
31+
*.msm
32+
*.msp
33+
34+
35+
############################
36+
# Packages
37+
############################
38+
39+
*.7z
40+
*.csv
41+
*.dat
42+
*.dmg
43+
*.gz
44+
*.iso
45+
*.jar
46+
*.rar
47+
*.tar
48+
*.zip
49+
*.com
50+
*.class
51+
*.dll
52+
*.exe
53+
*.o
54+
*.seed
55+
*.so
56+
*.swo
57+
*.swp
58+
*.swn
59+
*.swm
60+
*.out
61+
*.pid
62+
63+
64+
############################
65+
# Logs and databases
66+
############################
67+
68+
.tmp
69+
*.log
70+
*.sql
71+
*.sqlite
72+
73+
74+
############################
75+
# Misc.
76+
############################
77+
78+
*#
79+
.idea
80+
nbproject
81+
.vscode/
82+
83+
84+
############################
85+
# Node.js
86+
############################
87+
88+
lib-cov
89+
lcov.info
90+
pids
91+
logs
92+
results
93+
build
94+
node_modules
95+
.node_history
96+
package-lock.json
97+
**/package-lock.json
98+
!docs/package-lock.json
99+
*.heapsnapshot
100+
101+
102+
############################
103+
# Tests
104+
############################
105+
106+
testApp
107+
coverage
108+
cypress/screenshots
109+
cypress/videos
110+
111+
112+
############################
113+
# Documentation
114+
############################
115+
116+
dist
117+
118+
############################
119+
# Builds
120+
############################
121+
122+
packages/strapi-generate-new/files/public/
123+
124+
############################
125+
# Example app
126+
############################
127+
128+
.dev
129+
# *.cache
130+
131+
############################
132+
# Visual Studio Code
133+
############################
134+
135+
front-workspace.code-workspace

options/gitignore/TeX

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ acs-*.bib
120120

121121
# gregoriotex
122122
*.gaux
123+
*.glog
123124
*.gtex
124125

125126
# htlatex
@@ -166,6 +167,9 @@ _minted*
166167
# morewrites
167168
*.mw
168169

170+
# newpax
171+
*.newpax
172+
169173
# nomencl
170174
*.nlg
171175
*.nlo

options/gitignore/TwinCAT3

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# gitignore template for TwinCAT3
2+
# website: https://www.beckhoff.com/twincat3/
3+
#
4+
# Recommended: VisualStudio.gitignore
5+
6+
# TwinCAT files
7+
*.tpy
8+
*.tclrs
9+
*.compiled-library
10+
*.compileinfo
11+
# Don't include the tmc-file rule if either of the following is true:
12+
# 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)
13+
# 2. You've created a standalone PLC-project and added events to it, as these are stored in the TMC-file.
14+
*.tmc
15+
*.tmcRefac
16+
*.library
17+
*.project.~u
18+
*.tsproj.bak
19+
*.xti.bak
20+
LineIDs.dbg
21+
LineIDs.dbg.bak
22+
_Boot/
23+
_CompileInfo/
24+
_Libraries/
25+
_ModuleInstall/

options/gitignore/V

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
*
2+
!*/
3+
!*.*
4+
*.exe
5+
*.o
6+
*.so
7+
*.tmp.c
8+
*.exp
9+
*.ilk
10+
*.pdb
11+
*.dll
12+
*.lib
13+
*.bak
14+
*.out

options/gitignore/VisualStudio

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ StyleCopReport.xml
9090
*.tmp_proj
9191
*_wpftmp.csproj
9292
*.log
93+
*.tlog
9394
*.vspscc
9495
*.vssscc
9596
.builds
@@ -205,6 +206,9 @@ PublishScripts/
205206
*.nuget.props
206207
*.nuget.targets
207208

209+
# Nuget personal access tokens and Credentials
210+
nuget.config
211+
208212
# Microsoft Azure Build Output
209213
csx/
210214
*.build.csdef
@@ -360,3 +364,25 @@ MigrationBackup/
360364

361365
# Fody - auto-generated XML schema
362366
FodyWeavers.xsd
367+
368+
# VS Code files for those working on multiple tools
369+
.vscode/*
370+
!.vscode/settings.json
371+
!.vscode/tasks.json
372+
!.vscode/launch.json
373+
!.vscode/extensions.json
374+
*.code-workspace
375+
376+
# Local History for Visual Studio Code
377+
.history/
378+
379+
# Windows Installer files from build outputs
380+
*.cab
381+
*.msi
382+
*.msix
383+
*.msm
384+
*.msp
385+
386+
# JetBrains Rider
387+
.idea/
388+
*.sln.iml

options/license/0BSD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2006 by Rob Landley <[email protected]>
1+
Copyright (C) YEAR by AUTHOR EMAIL
22

33
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
44

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Copyright (c) year copyright holder. All Rights Reserved.
2+
3+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4+
5+
1.
6+
Redistribution of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7+
8+
2.
9+
Redistribution in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
10+
11+
3.
12+
Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
13+
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
15+
16+
YOU ACKNOWLEDGE THAT THIS SOFTWARE IS NOT DESIGNED, LICENSED OR INTENDED FOR USE IN THE DESIGN, CONSTRUCTION, OPERATION OR MAINTENANCE OF ANY MILITARY FACILITY.

options/license/CAL-1.0

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,11 @@ Code corresponding to the modifications in the Modified Work must be
135135
provided to the Recipient either a) under this License, or b) under a
136136
Compatible Open Source License.
137137

138+
A “Compatible Open Source License” means a license accepted by the Open Source
139+
Initiative that allows object code created using both Source Code provided under
140+
this License and Source Code provided under the other open source license to be
141+
distributed together as a single work.
142+
138143
#### 4.1.3. Coordinated Disclosure of Security Vulnerabilities
139144

140145
You may delay providing the Source Code corresponding to a particular

0 commit comments

Comments
 (0)