daml/.gitignore
Martin Huschenbett 840fabbea2
Spell out bazel directories in .gitignore (#7688)
* Spell out bazel directories in .gitignore

With the old `/bazel-*` pattern in there, `rg` also ignores files like
`bazel-haskell-deps.bzl`, which is quite inconvenient.

I obtained the list of what should be hidden by uncommenting the
`/bazel-*` line and adding evering `git status` showed as new files.
Thus, the list is hopefully complete.

We have a similar issue with `/compatibility/bazel-haskell-deps.bzl`.
Since I could figure out what exactly we want to ignore there, I just
added an un-ignore for that single file.

CHANGELOG_BEGIN
CHANGELOG_END

* Go with the unignore approach everywhere

CHANGELOG_BEGIN
CHANGELOG_END
2020-10-15 08:25:57 +00:00

73 lines
663 B
Plaintext

# private configuration
.envrc.private
# Artifacts
dist
.interfaces
*.log
target
*.tgz
# DAML
.daml/
# dev-env
/dev-env/var/
# Bazel
.bazel-cache
/bazel-*
!/bazel-haskell-deps.bzl
!/bazel-java-deps.bzl
/compatibility/bazel-*
!/compatibility/bazel-haskell-deps.bzl
/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
*.iml
*.ipr
*.iws
out
# Vim
*~
*.swo
*.swp
# Visual Studio Code
.vscode