Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .gitignore #6

Merged
merged 1 commit into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
# Editor directories and temporary files
.vscode/
.idea/
*.swp
*~
.project

# MacOS system files
.DS_Store

# Visual Studio Code settings
.vscode

# Coverage files generated by Julia
# Files generated by invoking Julia with --code-coverage
*.jl.cov
*.jl.*.cov

# Memory allocation logs from Julia
# Files generated by invoking Julia with --track-allocation
*.jl.mem

# Dependency directories containing system-specific paths
deps/
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
# They contain absolute paths specific to the host computer, and so should not be committed
deps/deps.jl
deps/build.log
deps/downloads/
deps/usr/
deps/src/

# Documentation build artifacts
# Build artifacts for creating documentation generated by the Documenter package
docs/build/
docs/site/

# Package manifest file (commit for applications, ignore for libraries)
# File generated by Pkg, the package manager, based on a corresponding Project.toml
# It records a fixed state of all packages used by the project. As such, it should not be
# committed for packages, but should be committed for applications that require a static
# environment.
Manifest.toml
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "TemplateTools"
uuid = "4b1000a4-b9b7-4319-98e4-c9b821a8e3b0"
version = "2.0.0"
version = "2.1.0"

[deps]
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
Expand Down
27 changes: 14 additions & 13 deletions templates/general/.gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
# Editor directories and temporary files
.vscode/
.idea/
*.swp
*~
.project

# MacOS system files
.DS_Store

# Visual Studio Code settings
.vscode

# Coverage files generated by Julia
# Files generated by invoking Julia with --code-coverage
*.jl.cov
*.jl.*.cov

# Memory allocation logs from Julia
# Files generated by invoking Julia with --track-allocation
*.jl.mem

# Dependency directories containing system-specific paths
deps/
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
# They contain absolute paths specific to the host computer, and so should not be committed
deps/deps.jl
deps/build.log
deps/downloads/
deps/usr/
deps/src/

# Documentation build artifacts
# Build artifacts for creating documentation generated by the Documenter package
docs/build/
docs/site/

# Package manifest file (commit for applications, ignore for libraries)
# File generated by Pkg, the package manager, based on a corresponding Project.toml
# It records a fixed state of all packages used by the project. As such, it should not be
# committed for packages, but should be committed for applications that require a static
# environment.
Manifest.toml
27 changes: 14 additions & 13 deletions templates/green/.gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
# Editor directories and temporary files
.vscode/
.idea/
*.swp
*~
.project

# MacOS system files
.DS_Store

# Visual Studio Code settings
.vscode

# Coverage files generated by Julia
# Files generated by invoking Julia with --code-coverage
*.jl.cov
*.jl.*.cov

# Memory allocation logs from Julia
# Files generated by invoking Julia with --track-allocation
*.jl.mem

# Dependency directories containing system-specific paths
deps/
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
# They contain absolute paths specific to the host computer, and so should not be committed
deps/deps.jl
deps/build.log
deps/downloads/
deps/usr/
deps/src/

# Documentation build artifacts
# Build artifacts for creating documentation generated by the Documenter package
docs/build/
docs/site/

# Package manifest file (commit for applications, ignore for libraries)
# File generated by Pkg, the package manager, based on a corresponding Project.toml
# It records a fixed state of all packages used by the project. As such, it should not be
# committed for packages, but should be committed for applications that require a static
# environment.
Manifest.toml
Loading