Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reload Ktlint's caches when .editorconfig changes #265

Merged
merged 3 commits into from Sep 10, 2022

Conversation

mateuszkwiecinski
Copy link
Collaborator

Fixes #262

It seems like this was the scenario I mentioned in: #246 (comment) 馃槄

My proposal is to do basically the same thing as ktlint-gradle does 馃し Maaybe if pinterest/ktlint#1446 gets addressed we'll get appropriate api to know when something changes (or ktlint will be smart enough to track .editorconfig changes)

@henrik242
Copy link

Any progress on this? @jeremymailen @mateuszkwiecinski

@jeremymailen
Copy link
Owner

Any progress on this? @jeremymailen @mateuszkwiecinski

Sorry for the delay. I was on vacation and then sick, so side projects haven't gotten much attention lately.
I'll try to get comments out on this one and other over the next few days.

@jeremymailen jeremymailen self-requested a review August 2, 2022 07:51
Copy link
Owner

@jeremymailen jeremymailen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunate that we have to work around it in this way, but this seems like a sensible implementation.
Just curious if the support for nested .editorconfig files is comprehensive.

Comment on lines 34 to 41
return generateSequence(seed = projectEditorConfig) { editorconfig ->
if (editorconfig.isRootEditorConfig) {
null
} else {
editorconfig.parentFile?.parentFile?.resolve(".editorconfig")
}
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This implementation does find .editorconfig files located in the current directory or in any parent. Also it is nice that you stop visiting parent directories when you encounter the "root=true" property.
What I do miss however, but I might be wrong, is checking for .editorconfig files inside the project itself. Don't they need to be detected and listed beforehand?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What I do miss however, but I might be wrong, is checking for .editorconfig files inside the project itself. Don't they need to be detected and listed beforehand?

I think this is a valid comment 馃憖 Although I'd avoid blindly traversing through project sources looking for potential editorconfig files. I claim most project use single editorconfig defined at Gradle's rootProject + in advanced use cases users override its settings by setting another editorconfig at Gradle project level (i.e. to have different formatting for generated files committed to the repository).
I'll still suggest going with what I proposed here, at least for now, as I believe it addresses most cases plus most likely it'll be fixed when we switch to the new api you'll introduce for pinterest/ktlint#1446

Comment on lines 34 to 37
resetEditorconfigCacheIfNeeded(
wasEditorConfigChanged = parameters.wasEditorConfigChanged,
logger = logger,
)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of resetting the entire cache of KtLint, we can also add a new API to KtLint that just evicts or directly reloads an editorconfig file based on its pathname. That would be an easy change. As API consumer you will be in full control to respond on changes in .editorconfig files that you are aware of. Last but not least, it is not needed to reload the entire cache.

@jeremymailen
Copy link
Owner

I assume we'll update this PR after #275?
Seems good to bundle in a kotlinter 3.12

@mateuszkwiecinski mateuszkwiecinski changed the title Clear Ktlint caches when .editorconfig changes Reload Ktlint's caches when .editorconfig changes Sep 8, 2022
@mateuszkwiecinski
Copy link
Collaborator Author

I assume we'll update this PR after #275?

Yes exactly. I waited until 0.47.0 bump is merged so I can switch to the new api, to avoid reloading all caches

Comment on lines 34 to 41
return generateSequence(seed = projectEditorConfig) { editorconfig ->
if (editorconfig.isRootEditorConfig) {
null
} else {
editorconfig.parentFile?.parentFile?.resolve(".editorconfig")
}
}
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What I do miss however, but I might be wrong, is checking for .editorconfig files inside the project itself. Don't they need to be detected and listed beforehand?

I think this is a valid comment 馃憖 Although I'd avoid blindly traversing through project sources looking for potential editorconfig files. I claim most project use single editorconfig defined at Gradle's rootProject + in advanced use cases users override its settings by setting another editorconfig at Gradle project level (i.e. to have different formatting for generated files committed to the repository).
I'll still suggest going with what I proposed here, at least for now, as I believe it addresses most cases plus most likely it'll be fixed when we switch to the new api you'll introduce for pinterest/ktlint#1446

@mateuszkwiecinski mateuszkwiecinski marked this pull request as ready for review September 8, 2022 17:01
Copy link
Owner

@jeremymailen jeremymailen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Excellent!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Regression: 3.11.1 doesn't seem to read disabled_rules from .editorconfig anymore
4 participants