generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
fix: force virtual file system sync on project opening #18
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
Closed
Conversation
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
(i.e., no 'Plugin' in the name)
…n' into adragoi/fix/pipeline-verifyplugin
Qodana Community for JVM6 new problems were found
💡 Qodana analysis was run in the pull request mode: only the changed files were checked View the detailed Qodana reportTo be able to view the detailed Qodana report, you can either:
To get - name: 'Qodana Scan'
uses: JetBrains/[email protected]
with:
upload-result: trueContact Qodana teamContact us at [email protected]
|
…nfig path. Update README.md
…-file JBRes-7139: Create a config
…erifyplugin Fix failing pipeline
…es-6963-structured-llm-requests Add structured LLM interaction
* feat: add `java` submodule * feat: create `JavaTransformation` interface in `java` submodule * feat: create `TextBasedTransformation` abstract class * feat: create `TransformationExecutor` interface * feat: create `IntelliJAwareTransformation` interface * feat: implement `IntelliJTransformationExecutor` * feat: add `HeadlessLogger` that mirrors logs into stdout/stderr * feat: implement `AddCommentTransformation` to serve as example * feat: apply given transformations in `TransformationService` * feat: use `AddCommentTransformation` in `HeadlessModeStarter` * feat: remove `parseConfig` from `Transformation` Because this parsing can be done in init block of an exact transformation. This makes the API easier since a user doesn't need to explicitly parse the config (it's responsibility of the transformation itself). * feat: register transformations in `HeadlessModeStarter` Additionally, register `AddCommentTransformation` as an example. * feat: add `add-comment-transformation` in yaml config * fix: remove dependency on `core` in `java` module Otherwise, the build fails due to missing credentials in `java` module required to install a private Space module. It is so because `java` module used `core` as `implementation` dependency, all `core`'s deps must be resolvable, which isn't the case for `grazie-llm-interaction`. A possible solution is to duplicate private deps setup from `core`'s build.gradle.kts into `java`'s build file. Probably, there's a better one. Right now, merely removing a dependency on `core` in `java` module setup. * feat: remove `name` member field of `Transformation`
…e-yaml-config-local JBRes-7332: Replace `codecocoon.yml` with an example file to avoid accidental committing
…oi/fix/vfs-sync # Conflicts: # src/main/kotlin/com/github/pderakhshanfar/codecocoonplugin/appstarter/HeadlessModeStarter.kt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Syncs the Virtual File System with the disk during project load.
This fixes a crash caused by stale file caches remaining after a
git revertof the project to be transformed.