We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08d0d2b commit 5851190Copy full SHA for 5851190
1 file changed
index.js
@@ -1,6 +1,7 @@
1
const checkLockVersion = require("./lib/checks/lockVersion");
2
const checkForPreRelease = require("./lib/checks/preReleases");
3
const checkForWorkspaces = require("./lib/checks/workspaces");
4
+const hasMSBridgeConfig = require("./lib/checks/msbridge");
5
const hasYarnLock = require("./lib/checks/yarn");
6
const { FatalError } = require("./lib/errors");
7
const { getPackageLock, getPackage } = require("./lib/utils");
@@ -13,6 +14,7 @@ function lint() {
13
14
errors.push(checkLockVersion(pkgLock));
15
errors.push(checkForPreRelease(pkgJson));
16
errors.push(checkForWorkspaces(pkgJson));
17
+ errors.push(hasMSBridgeConfig());
18
for (const error of errors) {
19
if (error instanceof FatalError) {
20
process.stderr.write(`${error.message}\n`);
0 commit comments