-
-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New Feature: Add .editorconfig Support #259
Conversation
Found these while adding EditorConfig support. This is NOT a breaking change, since this will only make the tool MORE permissive.
The approach I've gone for puts `.editorconfig` settings above those settings in the `ecs.php` config itself, to prioritize convenience for those people using pre-built sets. As many setttings as I could easily implement have been supported, including one proposed (but not standardized) setting I like to use. This commit includes tests, documentation, and dogfooding. Tests only currently cover the parsing of `.editorconfig`, but do not test how all permutations affect configuration. Doing so would require advanced alias mocks of the `EditorConfigFactory` and it's `load` method, which I wasn't able to get working in an initial attempt. That, or a refactor of `ECSConfigBuilder` to allow injecting the factory, but I didn't want to mess with any of the exposed public API. Closes #217
c3b82b3
to
d8eb232
Compare
@samsonasik Could I ask you for review here? I'll resolve and finish it at once then |
Awesome :) |
Thank you @Kenneth-Sills 🚀 |
class EditorConfig | ||
{ | ||
public function __construct( | ||
public readonly ?IndentStyle $indentStyle, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this seems cause downgrade build error, see
I will look into it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it seems due to enum usage
enum IndentStyle: string
{
case Space = 'space';
case Tab = 'tab';
}
I think we can just use class and constant.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rebase of #234
Closes #217