1 | # Git ignore settings.
|
2 | #
|
3 | # Generated by {{generator}} on {{today}},
|
4 | # from a template provided by {{pkg.name}}.
|
5 | #
|
6 | # @see https://git-scm.com/docs/gitignore
|
7 | #
|
8 |
|
9 | {{#if params.patterns}}
|
10 | {{#each params.patterns}}
|
11 | {{{this}}}
|
12 | {{/each}}
|
13 | {{else}}
|
14 | logs
|
15 | *.log
|
16 |
|
17 | pids
|
18 | *.pid
|
19 | *.seed
|
20 |
|
21 | lib-cov
|
22 | coverage
|
23 |
|
24 | .grunt
|
25 | .lock-wscript
|
26 |
|
27 | build/Release
|
28 |
|
29 | node_modules
|
30 | bower_components
|
31 |
|
32 | .DS_Store
|
33 | .idea
|
34 | .svn
|
35 |
|
36 | *.swp
|
37 | .sass-cache
|
38 | .*.tmp
|
39 | tmp
|
40 | var
|
41 |
|
42 | {{/if}} |
\ | No newline at end of file |