-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
43 lines (32 loc) · 1.12 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
# Exclude these files from the git repo
# Note: the trailing /* is significant. If a directory is excluded, Git will never look
# at the contents of that directory. The pattern dir/ excludes a directory named dir
# and (implicitly) everything under it. The pattern dir/* says nothing about dir itself;
# it just excludes everything under dir. With dir/, Git will never look at anything under
# dir, and thus will never apply any of the “un-exclude” patterns to anything under dir.
# With dir/*, Git will process the direct contents of dir, giving other patterns a chance
# to un-exclude some bit of the content.
# src http://git-scm.com/docs/gitignore
# Ignore Hidden system files and editor footprints
*.DS_Store
*[Tt]humbs.db
*.Trashes
**/~*
# ignore the codekit config file
**/config.codekit3
# ignore all composer installed packages
**/vendor/
composer.lock
# ignore all node/webpack installed packages
**/node_modules/
package-lock.json
# Unit Test
**/tests/codesniffer.ruleset.xml
**/tests/bootstrap.php.bak
**/tests/phpunit.xml*
**/reports/
# PHP Unit generates files
**/.csslintrc
**/.eslintrc
# PhpStorm/ JetBrains IDEs
.idea/