({isopack, activePluginPackages})
| 274 | }; |
| 275 | |
| 276 | function getLinterSourceProcessorSet({isopack, activePluginPackages}) { |
| 277 | buildmessage.assertInJob(); |
| 278 | |
| 279 | const sourceProcessorSet = new SourceProcessorSet( |
| 280 | isopack.displayName, { allowConflicts: true }); |
| 281 | |
| 282 | _.each(activePluginPackages, function (otherPkg) { |
| 283 | otherPkg.ensurePluginsInitialized(); |
| 284 | |
| 285 | sourceProcessorSet.merge(otherPkg.sourceProcessors.linter); |
| 286 | }); |
| 287 | |
| 288 | return sourceProcessorSet; |
| 289 | } |
| 290 | |
| 291 | var lintUnibuild = function ({isopack, isopackCache, sourceArch}) { |
| 292 | // Note: the buildmessage context of compiler.lint and lintUnibuild is a |
no test coverage detected
searching dependent graphs…