Skip to content

Commit 4790fe0

Browse files
author
Spirit
authored
Merge branch 'github:main' into main
2 parents a749c0e + 8779ee7 commit 4790fe0

17 files changed

+170
-59
lines changed

Ballerina.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# generated files
2+
target/
3+
generated/
4+
5+
# dependencies
6+
Dependencies.toml
7+
8+
# config files
9+
Config.toml
10+
# the config files used for testing, Uncomment the following line if you want to commit the test config files
11+
#!**/tests/Config.toml

CMake.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ install_manifest.txt
99
compile_commands.json
1010
CTestTestfile.cmake
1111
_deps
12+
CMakeUserPresets.json

Delphi.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@
2626
#*.obj
2727
#
2828

29+
# Default Delphi compiler directories
30+
# Content of this directories are generated with each Compile/Construct of a project.
31+
# Most of the time, files here have not there place in a code repository.
32+
#Win32/
33+
#Win64/
34+
#OSX64/
35+
#OSXARM64/
36+
#Android/
37+
#Android64/
38+
#iOSDevice64/
39+
#Linux64/
40+
2941
# Delphi compiler-generated binaries (safe to delete)
3042
*.exe
3143
*.dll

GitHubPages.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# This .gitignore is appropriate for repositories deployed to GitHub Pages and using
2+
# a Gemfile as specified at https://github.com/github/pages-gem#conventional
3+
4+
# Basic Jekyll gitignores (synchronize to Jekyll.gitignore)
5+
_site/
6+
.sass-cache/
7+
.jekyll-cache/
8+
.jekyll-metadata
9+
10+
# Additional Ruby/bundler ignore for when you run: bundle install
11+
/vendor
12+
13+
# Specific ignore for GitHub Pages
14+
# GitHub Pages will always use its own deployed version of pages-gem
15+
# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is
16+
# counterproductive to check this file into the repository.
17+
# Details at https://github.com/github/pages-gem/issues/768
18+
Gemfile.lock

Global/Archives.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
*.lzma
1515
*.cab
1616
*.xar
17+
*.zst
18+
*.tzst
1719

1820
# Packing-only formats
1921
*.iso

Global/Xcode.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
11
## User settings
22
xcuserdata/
3-
4-
## Xcode 8 and earlier
5-
*.xcscmblueprint
6-
*.xccheckout

Go.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,7 @@
1919

2020
# Go workspace file
2121
go.work
22+
go.work.sum
23+
24+
# env file
25+
.env

IAR.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Compiled binaries
2+
*.o
3+
*.bin
4+
*.elf
5+
*.hex
6+
*.map
7+
*.out
8+
*.obj
9+
10+
# Trash
11+
*.bak
12+
thumbs.db
13+
*.~*
14+
15+
# IAR Settings
16+
**/settings/*.crun
17+
**/settings/*.dbgdt
18+
**/settings/*.cspy
19+
**/settings/*.cspy.*
20+
**/settings/*.xcl
21+
**/settings/*.dni
22+
**/settings/*.wsdt
23+
**/settings/*.wspos
24+
25+
# IAR Debug Exe
26+
**/Exe/*.sim
27+
28+
# IAR Debug Obj
29+
**/Obj/*.pbd
30+
**/Obj/*.pbd.*
31+
**/Obj/*.pbi
32+
**/Obj/*.pbi.*
33+
34+
# IAR project "Debug" directory
35+
Debug/
36+
37+
# IAR project "Release" directory
38+
Release/
39+
40+
# IAR project settings directory
41+
settings/
42+
43+
# IAR backup files
44+
Backup*
45+
46+
# IAR .dep files
47+
*.dep

Objective-C.gitignore

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,6 @@
55
## User settings
66
xcuserdata/
77

8-
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
9-
*.xcscmblueprint
10-
*.xccheckout
11-
12-
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
13-
build/
14-
DerivedData/
15-
*.moved-aside
16-
*.pbxuser
17-
!default.pbxuser
18-
*.mode1v3
19-
!default.mode1v3
20-
*.mode2v3
21-
!default.mode2v3
22-
*.perspectivev3
23-
!default.perspectivev3
24-
258
## Obj-C/Swift specific
269
*.hmap
2710

@@ -59,10 +42,3 @@ fastlane/report.xml
5942
fastlane/Preview.html
6043
fastlane/screenshots/**/*.png
6144
fastlane/test_output
62-
63-
# Code Injection
64-
#
65-
# After new code Injection tools there's a generated folder /iOSInjectionProject
66-
# https://github.com/johnno1962/injectionforxcode
67-
68-
iOSInjectionProject/

Python.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,10 @@ ipython_config.py
106106
#pdm.lock
107107
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108108
# in version control.
109-
# https://pdm.fming.dev/#use-with-ide
109+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110110
.pdm.toml
111+
.pdm-python
112+
.pdm-build/
111113

112114
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113115
__pypackages__/

0 commit comments

Comments
 (0)