-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
46 lines (40 loc) · 1.65 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Ignore folder used to install vocabs from remote repositories (for when we
# wish to work a lot with terms in those vocabs). Having those vocabs locally
# means we can use the Artifact Generator to 'watch' them, and therefore
# automatically re-generate the corresponding source-code when we make edits
# to the local vocab copies (meaning developers can use new or changed terms
# immediately in their main code).
# (Of course, we need to remember to create PRs to the upstream repository
# when we're done!). We can also store here locally generated artifacts from
# local vocabs that we don't yet want to publish anywhere public yet.
src/InruptTooling/Vocab
# Ignore any generated script files that allow quick re-watching of bundles of
# vocabs.
watch-*.sh
# If we run the Artifact Generator locally, then by default it will generate
# to this directory, so ignore it, just as a precaution.
Generated
# Ignore all local resources, such as real user credential files, or local
# copies of real user API responses that we may wish to use during development
# (as opposed to making repeated actual API calls during development as we
# experiment with modelling). Since these files contain sensitive information,
# we must make sure they don't get pushed to source control.
resources/test/RealData/RealRegisteredAppCredentialResource/registered-app-*
resources/test/RealData/RealUserCredentialResource/user-credential-*
resources/test/RealData/PrivateApiResponse/
node_modules
coverage
dist
umd
.eslintcache
LICENSE_DEPENDENCIES
LICENSE_DEPENDENCIES_ALL
docs/api/build/
docs/api/source/api/
docs/dist/
docs/.DS_Store
.env*.local
.cache
# Ignore IntelliJ IDE files...
.idea/
*.iml