This repository has been archived by the owner on Feb 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
.gitignore
executable file
·69 lines (55 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# This file tells git what files to ignore when looking at our files.
# Lines that start with '#' are comments.
#
# See https://help.github.com/articles/ignoring-files/ for more info.
#
######################################################################
# Mac OS X makes these files to hold Finder window settings.
# See https://en.wikipedia.org/wiki/.DS_Store for more info.
.DS_Store
# The popular text editor `vi` and its derivatives (like `vim`) make
# files with this extension when auto-saving files being edited.
*.swp
######################################################################
# Common toolchain utilities like package managers, task runners, and
# other such tools typically place configuration files or other stuff
# in the project directory. These aren't actually source code either,
# so we can safely ignore them.
######################################################################
# Bower is a package manager for JavaScript and CSS libraries.
bower_components/
# The node_modules folder is the canonical place where Node.js
# tools place their libraries (called "modules" in Node lingo).
node_modules/
# When `npm` vomits, it logs its errors. We shold never commit those.
npm-debug.log
# The _site folder is where we publish the promo site for this
# project by using Jekyll, a static site generator.
_site/
# Since Jekyll is distributed as a Ruby package (called a Gem),
# we use Bundler, a Ruby Gems package manager, to configure it.
.bundle/
# Jekyll also caches compiled SASS (CSS), which we don't need.
.sass-cache/
# We also don't want to commit the Gems that Bundler installs
# since they are only useful for developers. But they're kept
# in the same directory we use for other libraries that we do
# want to distribute with the final build, so we only ignore
# Bundler's subdirectory, but not the other directories.
vendor/bundle/
######################################################################
# The next set of file paths relate to developer documentation and are
# automatically generated by running `phpdoc` from this folder.
#
# See
# https://github.com/meitar/better-angels/wiki/Setting-up-a-development-environment#generating-documentation
# for more info.
######################################################################
# This is a personal documentation generator config file. You can use
# this file to customize the way the project's documentation looks to
# you. See http://phpdoc.org/docs/latest/references/configuration.html
phpdoc.xml
# The developer documentation itself is, by default, written to this
# subfolder. Since it gets automatically generated, we don't want to
# save it in the code repository itself.
docs/