-
Notifications
You must be signed in to change notification settings - Fork 22
[LSP] always process args when calling initProject & remove the git validation (extension handles it now) #804
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
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
| return {"status": "error", "message": "not valid", "pyprojectPath": pyproject_toml_path} | ||
|
|
||
| args = process_args(server) | ||
| repo = git.Repo(args.module_root, search_parent_directories=True) |
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.
Moved it to the VSC extension.
PR Type
Enhancement, Bug fix
Description
Always process args during project init
Remove git repository validation checks
Simplify init flow and dependencies
Return consistent success payload
Diagram Walkthrough
File Walkthrough
beta.py
Always process args and drop git validationscodeflash/lsp/beta.py
args_processed_before.git.