daml/.gitignore
Samir Talwar 31d5fb7304
A terser .gitignore file. (#6324)
* A terser .gitignore file.

I trimmed _.gitignore_ to the stuff that looked like it was still useful
(at least, to me). Most of what's in there seemed like remnants of
previous build systems (Buck, Stack, etc.). Other stuff includes
editor-specific configuration files, which you can add to your global
_.gitignore_ (`git config --global core.excludesfile ~/.gitignore`).

I left the macOS _.DS_Store_ files in, even though I believe they should
also go into your global, machine-specific _.gitignore_ file, because
eventually someone's going to check them in otherwise.

On my machine, this has exactly the same effect as the longer one.
However, it's highly likely that I've overlooked something; let me know
and I can add it back.

CHANGELOG_BEGIN
CHANGELOG_END

* Add editors back into the .gitignore file.

I guess we really don't want people checking these files in by accident.
2020-06-12 13:44:43 +00:00

65 lines
556 B
Plaintext

# private configuration
.envrc.private
# Log files
*.log
# DAML
.daml/
# dev-env
/dev-env/var/
# Bazel
/.bazel-cache/
/bazel-*
/compatibility/bazel-*
/compatibility/.bazelrc
/compatibility/head_sdk/
.bazelrc.local
.bazelproject
# node.js
node_modules/
### Operating Systems ###
# macOS
.DS_Store
._.DS_Store
### Editors ###
# Eclipse
.classpath
.factorypath
.project
.settings
# Emacs
\#*\#
.\#*\#
*~
# Ensime
.ensime
.ensime_cache
# IntelliJ IDEA
.idea
.ijwb # Bazel
*.iml
*.ipr
*.iws
out
# Vim
*~
*.swo
*.swp
# Visual Studio Code
.vscode