File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change 11const checkLockVersion = require ( "./lib/checks/lockVersion" ) ;
22const checkForPreRelease = require ( "./lib/checks/preReleases" ) ;
33const checkForWorkspaces = require ( "./lib/checks/workspaces" ) ;
4+ const hasMSBridgeConfig = require ( "./lib/checks/msbridge" ) ;
45const hasYarnLock = require ( "./lib/checks/yarn" ) ;
56const { FatalError } = require ( "./lib/errors" ) ;
67const { getPackageLock, getPackage } = require ( "./lib/utils" ) ;
@@ -13,6 +14,7 @@ function lint() {
1314 errors . push ( checkLockVersion ( pkgLock ) ) ;
1415 errors . push ( checkForPreRelease ( pkgJson ) ) ;
1516 errors . push ( checkForWorkspaces ( pkgJson ) ) ;
17+ errors . push ( hasMSBridgeConfig ( ) ) ;
1618 for ( const error of errors ) {
1719 if ( error instanceof FatalError ) {
1820 process . stderr . write ( `${ error . message } \n` ) ;
You can’t perform that action at this time.
0 commit comments