forked from zaach/jison
-
Notifications
You must be signed in to change notification settings - Fork 20
/
.gitignore
84 lines (68 loc) · 1.76 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
74
75
76
77
78
79
80
81
## WARNING ## WARNING ## WARNING ## WARNING ## WARNING
##
## Looks like npm (and git?) has a bug on Windows where the fnmatch pattern with trailing slash, e.g. `output/`
## doesn't work for subdirectories, while the same pattern *without* the trailing slash *does* work for
## filtering directories (behaviour like `**/tmp/` but git and npm supports a different set of glob patterns)
##
## Commandline to observe this behaviour (on Windows dev box):
##
## npm pack && tar ftv *.tgz | grep tests
##
## Edit the ignore file to edit the `tests` line further below with or without trailing `/` to observe the
## buggy behaviour.
##
## WARNING ## WARNING ## WARNING ## WARNING ## WARNING
## Dependency directory
## Commenting this out is preferred by some people, see
## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git
node_modules
## Google Closure Compiler install directory
gcc/
## Book build output
#_book
## eBook build output
#*.epub
#*.mobi
#*.pdf
# Apple Crap
.DS_Store
# more npm dung
npm-debug.log
*.tgz
# Editor backup files
*.bak
*~
*.xxx
# Generated web content directories (nanoc output)
web/tmp
web/crash.log
# ignore the compiler output for any examples:
examples/output
docs/examples/reference-output
packages/**/examples/output
docs/**/examples/output
# Vagrant sandbox
vagrant
Vagrantfile
# scratch space
#tmp/
#---^ see WARNING at the top of this file!
tmp
tmp2
/book-using-jison-beyond-the-basics/base-materials
*.log
*.patch
# istanbul / nyc code coverage analysis workspaces
.nyc_output
# ignore all coverage report directories anywhere
coverage
# additional crap thast shouldn't land in git repo or npm:
tmp*
/test*.*
/issue*.*
/dump*
/*bug*
/examples/formula-v*
/docs/examples/formula-v*
profile*.txt
/include.lex