Skip to content

Commit

Permalink
Configure eslint; resolves #9.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaehring committed Dec 9, 2021
1 parent dde4781 commit 7318a9c
Show file tree
Hide file tree
Showing 3 changed files with 28,805 additions and 10,498 deletions.
2 changes: 1 addition & 1 deletion gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ exports.onPostBootstrap = function cacheSourceData() {
if (typeof baseURI !== 'string') {
isValid = false; msg = `${msg} Invalid base URI: ${baseURI}.`
}
if (!isValid && process.env.NODE_ENV == 'development') console.warn(msg);
if (!isValid && process.env.NODE_ENV === 'development') console.warn(msg);
return isValid;
}).map((config) => {
const { name, mkdocs, baseURI } = config;
Expand Down
Loading

0 comments on commit 7318a9c

Please sign in to comment.