mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
So that it will be consistent with the support of Dockerfile. The file is using tabs AND spaces for indentation, this commit follows the formatting rules defined in .editorconfig (2 spaces).
32 lines
875 B
JSON
32 lines
875 B
JSON
{
|
|
"name": "groovy",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": { "vscode": "*" },
|
|
"scripts": {
|
|
"update-grammar": "node ../../build/npm/update-grammar.js textmate/groovy.tmbundle Syntaxes/Groovy.tmLanguage ./syntaxes/groovy.tmLanguage.json"
|
|
},
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "groovy",
|
|
"aliases": ["Groovy", "groovy"],
|
|
"extensions": [".groovy", ".gvy", ".gradle", ".jenkinsfile"],
|
|
"filenamePatterns": ["Jenkinsfile.*"],
|
|
"firstLine": "^#!.*\\bgroovy\\b",
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "groovy",
|
|
"scopeName": "source.groovy",
|
|
"path": "./syntaxes/groovy.tmLanguage.json"
|
|
}],
|
|
"snippets": [{
|
|
"language": "groovy",
|
|
"path": "./snippets/groovy.code-snippets"
|
|
}]
|
|
}
|
|
}
|