comparison .hgignore @ 3:1597506a2241 vue-cli

merge with vue-cli
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 13 Jun 2018 10:57:57 +0200
parents
children 7c40e9f28f94
comparison
equal deleted inserted replaced
2:9c6f68a8e8b2 3:1597506a2241
1 syntax: glob
2
3 # Created by https://www.gitignore.io/api/go,vim,node,visualstudiocode
4
5 ### Go ###
6 # Binaries for programs and plugins
7 *.exe
8 *.exe~
9 *.dll
10 *.so
11 *.dylib
12
13 # Test binary, build with `go test -c`
14 *.test
15
16 # Output of the go coverage tool, specifically when used with LiteIDE
17 *.out
18
19 ### Node ###
20 # Logs
21 logs
22 *.log
23 npm-debug.log*
24 yarn-debug.log*
25 yarn-error.log*
26
27 # Runtime data
28 pids
29 *.pid
30 *.seed
31 *.pid.lock
32
33 # Directory for instrumented libs generated by jscoverage/JSCover
34 lib-cov
35
36 # Coverage directory used by tools like istanbul
37 coverage
38
39 # nyc test coverage
40 .nyc_output
41
42 # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
43 .grunt
44
45 # Bower dependency directory (https://bower.io/)
46 bower_components
47
48 # node-waf configuration
49 .lock-wscript
50
51 # Compiled binary addons (http://nodejs.org/api/addons.html)
52 build/Release
53
54 # Dependency directories
55 node_modules/
56 jspm_packages/
57
58 # Typescript v1 declaration files
59 typings/
60
61 # Optional npm cache directory
62 .npm
63
64 # Optional eslint cache
65 .eslintcache
66
67 # Optional REPL history
68 .node_repl_history
69
70 # Output of 'npm pack'
71 *.tgz
72
73 # Yarn Integrity file
74 .yarn-integrity
75
76 # dotenv environment variables file
77 .env
78
79 ### Vim ###
80 # swap
81 .sw[a-p]
82 .*.sw[a-p]
83 # session
84 Session.vim
85 # temporary
86 .netrwhist
87 # auto-generated tag files
88 tags
89
90 ### VisualStudioCode ###
91 .vscode/*
92 !.vscode/settings.json
93 !.vscode/tasks.json
94 !.vscode/launch.json
95 !.vscode/extensions.json
96 .history
97
98 cmd/tokenserver/tokenserver
99 web
100
101 # End of https://www.gitignore.io/api/go,vim,node,emacs,visualstudiocode