Skip to content

Commit e95aa3f

Browse files
Merge branch 'main' into patch-1
2 parents 5fbacfc + b0546f3 commit e95aa3f

14 files changed

+107
-41
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

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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
# Go workspace file
2121
go.work
22+
go.work.sum
2223

2324
# env file
2425
.env

Objective-C.gitignore

Lines changed: 0 additions & 17 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

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__/

Rust.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,10 @@ Cargo.lock
1212

1313
# MSVC Windows builds of rustc generate these, which store debugging information
1414
*.pdb
15+
16+
# RustRover
17+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
18+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
19+
# and can be added to the global gitignore or merged into this file. For a more nuclear
20+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
21+
#.idea/

Swift.gitignore

Lines changed: 0 additions & 17 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

TeX.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@
3939
*.synctex.gz
4040
*.synctex.gz(busy)
4141
*.pdfsync
42+
*.rubbercache
43+
rubber.cache
4244

4345
## Build tool directories for auxiliary files
4446
# latexrun
@@ -138,6 +140,9 @@ acs-*.bib
138140
*.trc
139141
*.xref
140142

143+
# hypdoc
144+
*.hd
145+
141146
# hyperref
142147
*.brf
143148

0 commit comments

Comments
 (0)