-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1589 from Pratik-Tech-Wizard/patch-4
Add languages.json file in LLM Copilot Extension for VS Code IDE
- Loading branch information
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
74 changes: 74 additions & 0 deletions
74
Generative AI & LLMs/LLM Copilot Ext for VS Code IDE/languages.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
{ | ||
"languages": [ | ||
{ | ||
"name": "Python", | ||
"fileExtensions": [".py"], | ||
"suggestions": [ | ||
"Provide data type hints.", | ||
"Suggest popular libraries (e.g., NumPy, Pandas).", | ||
"Offer function and class templates." | ||
], | ||
"features": [ | ||
"Support for Jupyter notebooks.", | ||
"Linting and formatting suggestions.", | ||
"Integration with popular frameworks (e.g., Flask, Django)." | ||
] | ||
}, | ||
{ | ||
"name": "JavaScript", | ||
"fileExtensions": [".js", ".jsx"], | ||
"suggestions": [ | ||
"Suggest ES6+ syntax and features.", | ||
"Provide common patterns (e.g., promises, async/await).", | ||
"Recommend libraries (e.g., React, Lodash)." | ||
], | ||
"features": [ | ||
"Support for Node.js and browser environments.", | ||
"Real-time error detection.", | ||
"Code snippet generation for React components." | ||
] | ||
}, | ||
{ | ||
"name": "Java", | ||
"fileExtensions": [".java"], | ||
"suggestions": [ | ||
"Suggest object-oriented design patterns.", | ||
"Provide import statements for common libraries.", | ||
"Recommend best practices for exception handling." | ||
], | ||
"features": [ | ||
"Integration with Maven and Gradle.", | ||
"Support for Spring and JavaFX.", | ||
"Refactoring suggestions." | ||
] | ||
}, | ||
{ | ||
"name": "C#", | ||
"fileExtensions": [".cs"], | ||
"suggestions": [ | ||
"Provide LINQ query examples.", | ||
"Suggest async programming patterns.", | ||
"Recommend using attributes and annotations." | ||
], | ||
"features": [ | ||
"Integration with .NET framework.", | ||
"Support for Unity game development.", | ||
"Code analysis and optimization suggestions." | ||
] | ||
}, | ||
{ | ||
"name": "Go", | ||
"fileExtensions": [".go"], | ||
"suggestions": [ | ||
"Suggest goroutine patterns.", | ||
"Provide examples of Go modules.", | ||
"Recommend error handling techniques." | ||
], | ||
"features": [ | ||
"Integration with Go tools (e.g., gofmt, golint).", | ||
"Support for HTTP server and REST API examples.", | ||
"Real-time dependency management." | ||
] | ||
} | ||
] | ||
} |