Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code Enhancements and Fixes for Hardhat #6078

Merged
merged 12 commits into from
Dec 26, 2024
Prev Previous commit
Next Next commit
style: rename fn to follow project conventions
  • Loading branch information
schaable committed Dec 26, 2024
commit f9802e79c9802e228c74018b07a3084dc17fe160
4 changes: 2 additions & 2 deletions scripts/check-dependencies.js
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ const IGNORE_PEER_DEPENDENCIES_CHECK_FOR_PACKAGES = {
["ts-node"]: ["hardhat"],
};

function CheckPeerDependencies(packageJson) {
function checkPeerDependencies(packageJson) {
schaable marked this conversation as resolved.
Show resolved Hide resolved
if (packageJson.peerDependencies === undefined) {
return true;
}
@@ -169,7 +169,7 @@ function main() {
continue;
}

const peersOk = CheckPeerDependencies(packageJson);
const peersOk = checkPeerDependencies(packageJson);
const dependencyMap = getDependencyMap(packageJson);
dependencyMaps.push(dependencyMap);

Loading