Skip to content

Commit

Permalink
Add support for languages. Fix badsyntax#358
Browse files Browse the repository at this point in the history
  • Loading branch information
gayanper committed May 19, 2023
1 parent 4802c7f commit 8ef2a8b
Showing 1 changed file with 90 additions and 1 deletion.
91 changes: 90 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,96 @@
"description": "Enable/disable diagnostics"
}
}
}
},
"languages": [
{
"id": "java",
"extensions": [
".java"
]
},
{
"id": "groovy",
"extensions": [
".groovy",
".gvy",
".gy",
".gsh"
]
},
{
"id": "kotlin",
"extensions": [
".kt"
]
},
{
"id": "cpp",
"extensions": [
".cpp",
".h"
]
},
{
"id": "c",
"extensions": [
".c",
".h"
]
},
{
"id": "json",
"extensions": [
".json"
]
},
{
"id": "yaml",
"extensions": [
".yaml",
".yml"
]
},
{
"id": "javascript",
"extensions": [
".js"
]
},
{
"id": "typescript",
"extensions": [
".ts"
]
},
{
"id": "sql",
"extensions": [
".sql"
]
},
{
"id": "markdown",
"extensions": [
".md"
]
},
{
"id": "python",
"extensions": [
".py",
".rpy",
".pyw",
".cpy",
".SConstruct",
".Sconstruct",
".sconstruct",
".SConscript",
".gyp",
".gypi"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile:prod",
Expand Down

0 comments on commit 8ef2a8b

Please sign in to comment.