-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
113 lines (88 loc) · 1.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# A general .gitignore for Gradle built Java projects that
# may use IntelliJ or Eclipse as an IDE.
# built application files for Android development
*.apk
*.ap_
# Ignition Module files
*.modl
# files for the dex VM
*.dex
# Ignore Java class files
*.class
# Gradle generated files
bin/
gen/
# Local configuration file used for proj. specific settings (sdk paths, etc)
local.properties
# Ignore Eclipse project files
.classpath
.project
# Ignore Intellij project files and idea directory
.idea
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/
# Gradle related files and caches
.gradletasknamecache
.gradle/
build/
bin/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/
# Dolphin folder's configuration file
.directory
# Angular and VS Code gitignore settings
.DS_STORE
/dist/
/bazel-out
/integration/bazel/bazel-*
*.log
node_modules
# Include when developing application packages.
pubspec.lock
.c9
.devcontainer/*
!.devcontainer/README.md
!.devcontainer/recommended-devcontainer.json
!.devcontainer/recommended-Dockerfile
.settings/
.vscode/launch.json
.vscode/settings.json
.vscode/tasks.json
*.swo
*.swp
modules/.settings
modules/.vscode
.vimrc
.nvimrc
# Don't check in secret files
*secret.js
# Ignore npm/yarn debug log
npm-debug.log
yarn-error.log
# build-analytics
.build-analytics
# rollup-test output
/modules/rollup-test/dist/
# User specific bazel settings
.bazelrc.user
# User specific ng-dev settings
.ng-dev.user*
.notes.md
baseline.json
# Ignore .history for the xyz.local-history VSCode extension
.history
# Husky
.husky/_
# Application.properties
**/resources/application.properties
.env_backend
.env_db
# Cypress examples
**/cypress/integration/1-getting-started/**
**/cypress/integration/2-advanced-examples/**
**/cypress/support/**