- Notifications
You must be signed in to change notification settings - Fork3.2k
VSCode tasks add fbt format and clear commands#4302
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:dev
Are you sure you want to change the base?
Conversation
sowavy234 commentedNov 1, 2025
Review: Issues Found in tasks.json ConfigurationI've reviewed the added VSCode tasks and identified several errors that need to be corrected: Issues Identified:
Corrected Configuration:Here's the properly formatted version: {"label":"[FBT] Format","group": {"kind":"build" },"type":"shell","command":"./fbt","args": ["format"],"windows": {"command":"fbt.cmd","args": ["format"] },"problemMatcher": []},{"label":"[FBT] Clear","group": {"kind":"build" },"type":"shell","command":"./fbt","args": ["-c"],"windows": {"command":"fbt.cmd","args": ["-c"] },"problemMatcher": []},Key Changes Explained:
These changes ensure the tasks work correctly across all platforms and follow VS Code's task configuration best practices. |
xMasterX commentedNov 1, 2025
Wow, AI reviewing my simplest PR, cool |
What's new
Verification
Checklist (For Reviewer)