Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nylen committed Jun 13, 2017
1 parent 305c126 commit 70a3181
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/create-php-parser.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env node

const pegjs = require( 'pegjs' );
const pegjs = require( 'pegjs' );
const phppegjs = require( 'php-pegjs' );
const fs = require( 'fs' );
const path = require( 'path' );
const fs = require( 'fs' );
const path = require( 'path' );

const peg = fs.readFileSync( 'blocks/api/post.pegjs', 'utf8' );
const parser = pegjs.buildParser(
Expand Down

0 comments on commit 70a3181

Please sign in to comment.