MCPcopy
hub / github.com/meteor/meteor / getLinterSourceProcessorSet

Function getLinterSourceProcessorSet

tools/isobuild/compiler.js:276–289  ·  view source on GitHub ↗
({isopack, activePluginPackages})

Source from the content-addressed store, hash-verified

274};
275
276function 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
291var lintUnibuild = function ({isopack, isopackCache, sourceArch}) {
292 // Note: the buildmessage context of compiler.lint and lintUnibuild is a

Callers 2

lintUnibuildFunction · 0.85
compiler.jsFile · 0.85

Calls 2

mergeMethod · 0.95
eachMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…