feat: adding linter for commits
This commit is contained in:
12
node_modules/JSONStream/bin.js
generated
vendored
Executable file
12
node_modules/JSONStream/bin.js
generated
vendored
Executable file
@ -0,0 +1,12 @@
|
||||
#! /usr/bin/env node
|
||||
|
||||
var JSONStream = require('./')
|
||||
|
||||
if(!module.parent && process.title !== 'browser') {
|
||||
process.stdin
|
||||
.pipe(JSONStream.parse(process.argv[2]))
|
||||
.pipe(JSONStream.stringify('[', ',\n', ']\n', 2))
|
||||
.pipe(process.stdout)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user