mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-05 03:56:26 +03:00
961ca80b77
Process: - `git ls-files | xargs sed -i 's/DAML/Daml/g'` - `git add -p` To review: - Check for false positives by carefully reviewing the diff in this PR. - Check for false negatives with `git grep DAML`. CHANGELOG_BEGIN - Removed all traces of DAML. This may affect error messages and debug outputs. CHANGELOG_END
73 lines
684 B
Plaintext
73 lines
684 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/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/*
|
|
!.vscode/settings.json.default
|