-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
73 lines (59 loc) · 1.75 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
#
# This top-level `.gitignore` file should contain rules to ignore the following
# types of things. Language-specific ignore rules should be put into the
# language-specific subdirectory's `.gitignore` file (e.g., `java/.gitignore`).
#
# 1. Ignore swap/backup files automatically generated by IDEs/editors used on
# GMS (e.g., IntelliJ, VSCode, vim, emacs). (While IntelliJ is
# Java-specific, accidentally importing the `gms-common` directory will
# result in the creation of a `gms-common/.idea` directory, which should be
# ignored.) ignore.)
#
# 2. Files automatically generated by build tools used on GMS (e.g., gradle,
# npm/yarn). (While Gradle is Java-specific, accidentally running a `gradle`
# command in `gms-common` will result in the creation of
# a `gms-common/.gradle` directory, which should be ignored.)
#
# 3. Files automatically generated by operating systems used on GMS (e.g.,
# Linux, MacOS, Windows).
#
### Emacs ###
*~
\#*\#
### VSCode ###
.vscode
### Gradle ###
.gradle/
### Maven ###
.m2/
### IntelliJ ###
.idea/
*.iml
###PyCharm###
venv/bin/**
**/__pycache__/**
### MacOS ###
.DS_Store
### Vim ###
*.swp
### Windows ###
[Dd]esktop.ini
### Cucumber results
cucumber_reports/*.json
java/cucumber_reports/cucumber*
java/cucumber_reports/*.json
node_modules/
java/test/results/
java/cucumber_reports/cucumber*.json
### processing-config-loader ###
python/processing-config-loader/processing-configuration-root/**
python/gms-data-loader/dataloaders/processing_config/processing-configuration-root/**
### Egg directories ###
python/*.egg-info
python/gms-docker/*.egg-info
python/gms-utils/*.egg-info
### gms-data-loader ###
python/gms-data-loader/config/**
python/gms-data-loader/stationdata/**
.testcontainers.properties
.coverage