Skip to content

Commit

Permalink
chore: fix linting problems
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Jan 4, 2022
1 parent e2c0011 commit 7694d20
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/gitdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ const _ = require('lodash');
const MarkdownContents = require('markdown-contents');
const marked = require('marked');
const StackTrace = require('stack-trace');
const contents = require('./helpers/contents.js');
const gitinfo = require('./helpers/gitinfo.js');
const Parser = require('./parser.js');
const contents = require('./helpers/contents');
const gitinfo = require('./helpers/gitinfo');
const Parser = require('./parser');

/**
* @param {string} input Gitdown flavored markdown.
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Gitdown = require('./gitdown.js');
const Gitdown = require('./gitdown');

Gitdown.Parser = require('./parser.js');
Gitdown.Parser = require('./parser');

module.exports = Gitdown;
2 changes: 1 addition & 1 deletion src/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const Path = require('path');
const Promise = require('bluebird');
const glob = require('glob');
const _ = require('lodash');
const Locator = require('./locator.js');
const Locator = require('./locator');

/**
* Parser is responsible for matching all of the instances of the Gitdown JSON and invoking
Expand Down

0 comments on commit 7694d20

Please sign in to comment.