Skip to contents

Creates a dockerignore template with patterns to ignore files and directories created by common code editors and IDEs.

Usage

dk_template_ignore_editor(.dockerignore = NULL)

Arguments

.dockerignore

Optional existing dockerignore object to add patterns to

Value

A dockerignore object with editor-related ignore patterns

Details

This template adds patterns to ignore files and directories created by common code editors and IDEs, including:

  • VS Code: .vscode/, *.code-workspace

  • JetBrains IDEs (e.g., RStudio, PyCharm): .idea/, *.iml, *.iws

  • Sublime Text: *.sublime-workspace, *.sublime-project

  • Vim: *.swp, *.swo, *~

  • Emacs: #*#, .#*, .projectile

  • Eclipse: .classpath, .project, .settings/

  • Visual Studio: .vs/, *.suo, *.njsproj, *.sln

These files are typically not needed in a Docker image and can reduce the build context size.

Examples

# Create a new dockerignore with editor patterns
di <- dk_template_ignore_editor()
di
#> .vscode/
#> *.code-workspace
#> .idea/
#> *.iml
#> *.iws
#> *.ipr
#> out/
#> *.sublime-workspace
#> *.sublime-project
#> *.swp
#> *.swo
#> *~
#> #*#
#> .#*
#> .projectile
#> .classpath
#> .project
#> .settings/
#> .vs/
#> *.suo
#> *.ntvs*
#> *.njsproj
#> *.sln
#> *.sw? 

# Add editor patterns to an existing dockerignore
di <- dockerignore() |>
  di_add("*.log") |>
  dk_template_ignore_editor()
di
#> *.log
#> .vscode/
#> *.code-workspace
#> .idea/
#> *.iml
#> *.iws
#> *.ipr
#> out/
#> *.sublime-workspace
#> *.sublime-project
#> *.swp
#> *.swo
#> *~
#> #*#
#> .#*
#> .projectile
#> .classpath
#> .project
#> .settings/
#> .vs/
#> *.suo
#> *.ntvs*
#> *.njsproj
#> *.sln
#> *.sw?