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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update languages.json in file #627

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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."
]
}
]
}
Loading