Runs addon lintTree hooks and returns a single tree containing all their output. @private @method addonLintTree @param {String} type Type of tree @param {Tree} tree Tree to process @return {Tree} Processed tree
(type, tree)
| 642 | @return {Tree} Processed tree |
| 643 | */ |
| 644 | addonLintTree(type, tree) { |
| 645 | let output = lintAddonsByType(this.project.addons, type, tree); |
| 646 | |
| 647 | return mergeTrees(output, { |
| 648 | overwrite: true, |
| 649 | annotation: `TreeMerger (lint ${type})`, |
| 650 | }); |
| 651 | } |
| 652 | |
| 653 | /** |
| 654 | Imports legacy imports in this.vendorFiles |
no outgoing calls
no test coverage detected