forked from GerHobbelt/jison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
68 lines (54 loc) · 1.25 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
# Node rules:
## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
## 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
# Editor backup files
*.bak
*~
# Generated web content directories (nanoc output)
web/tmp/
web/crash.log
# ignore the compiler output for any examples:
/examples/output
/packages/jison-lex/examples/output
/docs/examples/output
/docs/examples/reference-output
# Vagrant sandbox
vagrant/
Vagrantfile
# scratch space
/tmp/
/book-using-jison-beyond-the-basics/base-materials/
*.log
*.patch
# istanbul / nyc code coverage analysis workspaces
/.nyc_output
/coverage
/packages/helpers-lib/coverage
/packages/jison-lex/coverage
/packages/json2jison/coverage
/packages/jison2json/coverage
/packages/lex-parser/coverage
/packages/ebnf-parser/coverage
/examples/coverage/
# additional crap thast shouldn't land in git repo or npm:
/tmp*/
/test*.*
/issue*.*
/examples/formula-v*.*
/docs/examples/formula-v*.*