Created ConfigCommentParser, VisitNodeStep, and CallMethodStep classes
Added tests for each class
Updated release-please config
Updated release-please CI job
Updated issue templates
Related Issues
fixes #97
Is there anything you'd like reviewers to focus on?
Just starting with the basics for this package. These are some commonalities I've found across the different languages. There will likely be more.
I slightly changed the interface of ConfigCommentParser to be more generic as the one in eslint/eslint was very specific to the way Espree represents comments. I tested this ConfigCommentParser in ESLint directly to ensure the new interface works correctly.
Prerequisites checklist
What is the purpose of this pull request?
Created the new
plugin-kit
packageWhat changes did you make? (Give an overview)
plugin-kit
directoryConfigCommentParser
,VisitNodeStep
, andCallMethodStep
classesRelated Issues
fixes #97
Is there anything you'd like reviewers to focus on?
Just starting with the basics for this package. These are some commonalities I've found across the different languages. There will likely be more.
I slightly changed the interface of
ConfigCommentParser
to be more generic as the one ineslint/eslint
was very specific to the way Espree represents comments. I tested thisConfigCommentParser
in ESLint directly to ensure the new interface works correctly.