Skip to content

Commit

Permalink
Disable eslint for line so tests will run
Browse files Browse the repository at this point in the history
  • Loading branch information
belcherj committed Oct 3, 2017
1 parent f38dc08 commit 42e3c23
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions blocks/api/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ export function createBlockWithFallback( name, rawContent, attributes ) {
*/
export function parseWithGrammar( content ) {
return grammarParse( content ).reduce( ( memo, blockNode ) => {
// eslint-disable-next-line no-unused-vars
const { blockName, innerBlocks, innerHtml: rawContent, attrs } = blockNode;
const block = createBlockWithFallback( blockName, rawContent.trim(), attrs );
if ( block ) {
Expand Down

0 comments on commit 42e3c23

Please sign in to comment.