Last active
August 23, 2019 00:27
-
-
Save diogobaracho/f3e25fa40dc0681fca9e1d7f4a17b9d2 to your computer and use it in GitHub Desktop.
.gitignore for Elixir lang API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ELIXIR ################## | |
# App artifacts | |
/_build | |
/db | |
/deps | |
/cover | |
.elixir_ls/ | |
/.fetch | |
*.ez | |
*.beam | |
Mnesia.* | |
.mnesia | |
# Generated on crash by the VM | |
erl_crash.dump | |
# Generated on crash by NPM | |
npm-debug.log | |
# Static artifacts | |
/assets/node_modules | |
# Since we are building assets from assets/, | |
# we ignore priv/static. You may want to comment | |
# this depending on your deployment strategy. | |
/priv/static/ | |
# Dialyzer plts are ignored to allow CI to cache the files | |
/priv/plts/*.plt | |
/priv/plts/*.plt.hash | |
# Files matching config/*.secret.exs pattern contain sensitive | |
# data and you should not commit them into version control. | |
# | |
# Alternatively, you may comment the line below and commit the | |
# secrets files as long as you replace their contents by environment | |
# variables. | |
/config/*.secret.exs | |
# Local environment variable files | |
.env.local | |
.env.*.local | |
/.env | |
tags | |
# GENERAL ############################## | |
# IDE tools | |
.vscode/* | |
!.vscode/settings.json | |
!.vscode/tasks.json | |
!.vscode/launch.json | |
!.vscode/extensions.json | |
.history | |
.idea/ | |
# Logs and databases | |
*.log | |
*.sql | |
*.sqlite | |
# OS generated files | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
# Compiled source # | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment