Index

lognestmonster / 9beffc2

A general-purpose single-header C logging library and parser for event-based logs. (Incomplete)

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
425 Dec 2018 14:19f0bdf4bUpdate .gitignoreJoshua122N

Blob @ lognestmonster / .gitignore

text/plain1212 bytesdownload raw
1# Sublime Text Project
2*.sublime-project
3*.sublime-workspace
4
5# Logs
6logs
7*.log
8npm-debug.log*
9yarn-debug.log*
10yarn-error.log*
11
12# Runtime data
13pids
14*.pid
15*.seed
16*.pid.lock
17
18# Directory for instrumented libs generated by jscoverage/JSCover
19lib-cov
20
21# Coverage directory used by tools like istanbul
22coverage
23
24# nyc test coverage
25.nyc_output
26
27# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
28.grunt
29
30# Bower dependency directory (https://bower.io/)
31bower_components
32
33# node-waf configuration
34.lock-wscript
35
36# Compiled binary addons (https://nodejs.org/api/addons.html)
37build/Release
38
39# Dependency directories
40node_modules/
41jspm_packages/
42
43# TypeScript v1 declaration files
44typings/
45
46# Optional npm cache directory
47.npm
48
49# Optional eslint cache
50.eslintcache
51
52# Optional REPL history
53.node_repl_history
54
55# Output of 'npm pack'
56*.tgz
57
58# Yarn Integrity file
59.yarn-integrity
60
61# dotenv environment variables file
62.env
63.env.test
64
65# parcel-bundler cache (https://parceljs.org/)
66.cache
67
68# next.js build output
69.next
70
71# nuxt.js build output
72.nuxt
73
74# vuepress build output
75.vuepress/dist
76
77# Serverless directories
78.serverless/
79
80# FuseBox cache
81.fusebox/
82
83# DynamoDB Local files
84.dynamodb/
85