From edf6543529810aeecee9fc08358865a99ae04f02 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Wed, 18 Oct 2023 18:44:41 +0100 Subject: [PATCH] chore(lib): add missing `use strict` directive (#276) --- lib/get-repository-url.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/get-repository-url.js b/lib/get-repository-url.js index c943f2d..2272b55 100644 --- a/lib/get-repository-url.js +++ b/lib/get-repository-url.js @@ -1,3 +1,5 @@ +'use strict' + module.exports = function (git) { const pkg = git.getRepoPackage() if (!pkg.repository) {