{ "name": "lua", "displayName": "Lua", "description": "Lua Language Server coded by Lua", "author": "sumneko", "icon": "images/logo.png", "license": "MIT", "version": "0.5.4", "repository": { "type": "git", "url": "https://github.com/sumneko/lua-language-server" }, "publisher": "sumneko", "categories": [ "Linters", "Programming Languages" ], "keywords": [ "Lua", "LSP", "GoTo Definition", "IntelliSense" ], "engines": { "vscode": "^1.23.0" }, "activationEvents": [ "onLanguage:lua" ], "main": "./client/out/extension", "contributes": { "configuration": { "type": "object", "title": "Lua", "properties": { "Lua.diagnostics.disable": { "scope": "resource", "type": "array", "items": "string", "description": "Disabled diagnostic (Use code in hover brackets).\n禁用的诊断(使用浮框括号内的代码)。" }, "Lua.diagnostics.globals": { "scope": "resource", "type": "array", "items": "string", "description": "Defined global variables.\n已定义的全局变量。" }, "Lua.workspace.ignoreDir": { "scope": "resource", "type": "array", "items": "string", "description": "Ignored directories.\n忽略的目录。" }, "Lua.workspace.ignoreSubmodules": { "scope": "resource", "type": "boolean", "default": true, "description": "Ignore submodules.\n忽略子模块。" }, "Lua.workspace.useGitIgnore": { "scope": "resource", "type": "boolean", "default": true, "description": "Ignore files list in .gitignore.\n忽略.gitignore中列举的文件。" } } } }, "scripts": { "vscode:prepublish": "cd client && npm run update-vscode && cd .." }, "__metadata": { "id": "3a15b5a7-be12-47e3-8445-88ee3eabc8b2", "publisherDisplayName": "sumneko", "publisherId": "fb626675-24cf-4881-8c13-b465f29bec2f" } }