You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Expose the LinterExtensionBase as a public base class so that user can create linter extensions to create rule sets for Dynamo graphs beyond the GenerativeDesign type.
I think there are a few more things :
internal abstract class LinterExtensionBase
internal event Action OnLinterLinkToWorkspace
internal event Action OnLinterUnlinkFromWorkspace
internal class GraphRuleEvaluationResult
internal class NodeRuleEvaluationResult
internal void OnRuleEvaluated(IRuleEvaluationResult result)
internal bool IsActive => this.linterManager?.IsExtensionActive(UniqueId) ?? false;
internal void InitializeBase(LinterManager linterManager)
Thinking of the minimal exposure needed for the upcoming DA check rules I think we only need internal abstract class LinterExtensionBase from the list above so let's add that and then LGTM @saintentropy
* Make Linter base case public
* Typos
* Missing base class to public
---------
Co-authored-by: Craig Long <craig.long@autodesk.com>
(cherry picked from commit 5f7f7ea)
* Make Linter base case public
* Typos
* Missing base class to public
---------
Co-authored-by: Craig Long <craig.long@autodesk.com>
(cherry picked from commit 5f7f7ea)
Co-authored-by: Craig Long <craig.long@autodesk.com>
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Expose the LinterExtensionBase as a public base class so that user can create linter extensions to create rule sets for Dynamo graphs beyond the GenerativeDesign type.
Declarations
Check these if you believe they are true
*.resx
filesRelease Notes
(FILL ME IN) Brief description of the fix / enhancement. Mandatory section
Reviewers
@BogdanZavu .
FYIs
@mjkkirschner @twastvedt