File tree Expand file tree Collapse file tree 3 files changed +74
-6
lines changed Expand file tree Collapse file tree 3 files changed +74
-6
lines changed Original file line number Diff line number Diff line change
1
+ # Ignore docker files
2
+ .dockerignore
3
+ Dockerfile *
4
+ docker-compose *
5
+
6
+ # Ignore .git
7
+ /.git
8
+ .gitignore
9
+
10
+ # Ignore bundler config.
1
11
/.bundle
12
+ vendor /bundle
13
+
2
14
/.env
3
- /.git
4
15
.travis.yml
5
- # IDEs folders
6
- .idea
16
+
17
+ # Ignore all logfiles.
18
+ /log /*
19
+ ! /log /.keep
20
+
21
+ # Ignore Rubocop files
22
+ .rubocop- *
23
+
24
+ # Ignore coverage reports
25
+ /coverage /*
26
+
27
+ # Ignore editor specific configs
28
+ /.idea
29
+ /.vscode
30
+ .project
31
+ .classpath
32
+ .c9 /
33
+ * .launch
34
+ .settings /
35
+ * .sublime-workspace
36
+ .generators
37
+ .rakeTasks
38
+
39
+ # System Files
40
+ .DS_Store
41
+ Thumbs.db
Original file line number Diff line number Diff line change 1
- .Gemfile *
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+ vendor /bundle
10
+
2
11
config /travis.yml
3
- log
4
- .history
12
+
13
+ # Ignore all logfiles.
14
+ /log /*
15
+ ! /log /.keep
16
+
17
+ # Ignore Rubocop files
18
+ .rubocop- *
19
+
20
+ # Ignore coverage reports
21
+ /coverage /*
22
+
23
+ # Ignore editor specific configs
24
+ /.idea
25
+ /.vscode
26
+ .project
27
+ .classpath
28
+ .c9 /
29
+ * .launch
30
+ .settings /
31
+ * .sublime-workspace
32
+ .generators
33
+ .rakeTasks
34
+
35
+ # System Files
36
+ .DS_Store
37
+ Thumbs.db
You can’t perform that action at this time.
0 commit comments