daml/.gitignore
Samir Talwar 92020aa868
dev-env: Add a symlink, dev-env/jdk, to the current JDK. (#7745)
* dev-env: Add a symlink, `dev-env/jdk`, to the current JDK.

This makes configuring IntelliJ IDEA to use the correct JDK much easier.

CHANGELOG_BEGIN
CHANGELOG_END

* dev-env: Document setting up the JDK in IntelliJ IDEA.
2020-10-20 11:03:23 +00:00

74 lines
676 B
Plaintext

# private configuration
.envrc.private
# Artifacts
dist
.interfaces
*.log
target
*.tgz
# DAML
.daml/
# dev-env
/dev-env/jdk
/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