Skip to content

Commit ad58833

Browse files
authored
Merge branch 'main' into main
2 parents f372933 + df4a30a commit ad58833

33 files changed

+349
-53
lines changed

Android.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ local.properties
1212
captures/
1313
.externalNativeBuild/
1414
.cxx/
15+
*.aab
1516
*.apk
1617
output-metadata.json
1718

ArchLinuxPackages.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
*.jar
44
*.exe
55
*.msi
6+
*.deb
67
*.zip
78
*.tgz
89
*.log

Autotools.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ autom4te.cache
3131

3232
# https://www.gnu.org/software/libtool/
3333

34+
/libtool
3435
/ltmain.sh
36+
.libs/
3537

3638
# http://www.gnu.org/software/texinfo
3739

C++.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
*.gch
1212
*.pch
1313

14+
# Linker files
15+
*.ilk
16+
17+
# Debugger Files
18+
*.pdb
19+
1420
# Compiled Dynamic libraries
1521
*.so
1622
*.dylib
@@ -30,3 +36,6 @@
3036
*.exe
3137
*.out
3238
*.app
39+
40+
# debug information files
41+
*.dwo

C.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,6 @@ modules.order
5050
Module.symvers
5151
Mkfile.old
5252
dkms.conf
53+
54+
# debug information files
55+
*.dwo

Dart.gitignore

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ doc/api/
1616

1717
# Avoid committing generated Javascript files:
1818
*.dart.js
19-
*.info.json # Produced by the --dump-info flag.
20-
*.js # When generated by dart2js. Don't specify *.js if your
21-
# project includes source files written in JavaScript.
19+
# Produced by the --dump-info flag.
20+
*.info.json
21+
# When generated by dart2js. Don't specify *.js if your
22+
# project includes source files written in JavaScript.
23+
*.js
2224
*.js_
2325
*.js.deps
2426
*.js.map

Delphi.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
*.projdata
6969
*.tvsconfig
7070
*.dsk
71+
*.dsv
7172

7273
# Delphi history and backups
7374
__history/

Global/Emacs.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,5 @@ flycheck_*.el
4747
# network security
4848
/network-security.data
4949

50+
# undo-tree
51+
*.~undo-tree~

Global/JetBrains.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,13 @@ crashlytics.properties
7171
crashlytics-build.properties
7272
fabric.properties
7373

74-
# Editor-based Rest Client
74+
# Editor-based HTTP Client
7575
.idea/httpRequests
76+
http-client.private.env.json
7677

7778
# Android studio 3.1+ serialized cache file
7879
.idea/caches/build_file_checksums.ser
80+
81+
# Apifox Helper cache
82+
.idea/.cache/.Apifox_Helper
83+
.idea/ApifoxUploaderProjectSetting.xml

Global/Lefthook.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# https://lefthook.dev/configuration/#config-file-name
2+
/.lefthook-local.json
3+
/.lefthook-local.toml
4+
/.lefthook-local.yaml
5+
/.lefthook-local.yml
6+
/lefthook-local.json
7+
/lefthook-local.toml
8+
/lefthook-local.yaml
9+
/lefthook-local.yml
10+
/.config/lefthook-local.json
11+
/.config/lefthook-local.toml
12+
/.config/lefthook-local.yaml
13+
/.config/lefthook-local.yml
14+
15+
# https://lefthook.dev/configuration/source_dir_local.html
16+
/.lefthook-local/

0 commit comments

Comments
 (0)