Skip to content

Commit cf0aed7

Browse files
committed
2.6.5
1 parent 9f727ab commit cf0aed7

File tree

7 files changed

+73
-3
lines changed

7 files changed

+73
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ If you need to compile by yourself, please refer to [here](https://github.com/su
123123
* [utility](https://github.com/sumneko/utility)
124124
* [vscode-lua-doc](https://github.com/actboy168/vscode-lua-doc)
125125
* [json.lua](https://github.com/actboy168/json.lua)
126+
* [EmmyLuaCodeStyle](https://github.com/CppCXY/EmmyLuaCodeStyle)
126127

127128
## Acknowledgement
128129

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# changelog
22

3+
## 2.6.5
4+
`2022-2-17`
5+
* `FIX` telemetry is not disabled by default
6+
* `FIX` [#934](https://github.com/sumneko/lua-language-server/issues/934)
7+
* `FIX` [#952](https://github.com/sumneko/lua-language-server/issues/952)
8+
39
## 2.6.4
410
`2022-2-9`
511
* `CHG` completion: reduced sorting priority for postfix completion

package.json

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,16 @@
250250
],
251251
"type": "string"
252252
},
253+
"codestyle-check": {
254+
"default": "None",
255+
"description": "%config.diagnostics.codestyle-check%",
256+
"enum": [
257+
"Any",
258+
"Opened",
259+
"None"
260+
],
261+
"type": "string"
262+
},
253263
"count-down-loop": {
254264
"default": "Any",
255265
"description": "%config.diagnostics.count-down-loop%",
@@ -664,6 +674,17 @@
664674
],
665675
"type": "string"
666676
},
677+
"codestyle-check": {
678+
"default": "Warning",
679+
"description": "%config.diagnostics.codestyle-check%",
680+
"enum": [
681+
"Error",
682+
"Warning",
683+
"Information",
684+
"Hint"
685+
],
686+
"type": "string"
687+
},
667688
"count-down-loop": {
668689
"default": "Warning",
669690
"description": "%config.diagnostics.count-down-loop%",
@@ -1677,5 +1698,5 @@
16771698
"type": "git",
16781699
"url": "https://github.com/sumneko/lua-language-server"
16791700
},
1680-
"version": "2.6.4"
1701+
"version": "2.6.5"
16811702
}

package/build.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "2.6.4"
3+
local VERSION = "2.6.5"
44

55
local package = require 'package.package'
66
local fsu = require 'fs-utility'

server

setting/schema-zh-cn.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,16 @@
304304
],
305305
"type": "string"
306306
},
307+
"codestyle-check": {
308+
"default": "None",
309+
"description": "%config.diagnostics.codestyle-check%",
310+
"enum": [
311+
"Any",
312+
"Opened",
313+
"None"
314+
],
315+
"type": "string"
316+
},
307317
"count-down-loop": {
308318
"default": "Any",
309319
"description": "%config.diagnostics.count-down-loop%",
@@ -718,6 +728,17 @@
718728
],
719729
"type": "string"
720730
},
731+
"codestyle-check": {
732+
"default": "Warning",
733+
"description": "%config.diagnostics.codestyle-check%",
734+
"enum": [
735+
"Error",
736+
"Warning",
737+
"Information",
738+
"Hint"
739+
],
740+
"type": "string"
741+
},
721742
"count-down-loop": {
722743
"default": "Warning",
723744
"description": "%config.diagnostics.count-down-loop%",

setting/schema.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,16 @@
304304
],
305305
"type": "string"
306306
},
307+
"codestyle-check": {
308+
"default": "None",
309+
"description": "%config.diagnostics.codestyle-check%",
310+
"enum": [
311+
"Any",
312+
"Opened",
313+
"None"
314+
],
315+
"type": "string"
316+
},
307317
"count-down-loop": {
308318
"default": "Any",
309319
"description": "%config.diagnostics.count-down-loop%",
@@ -718,6 +728,17 @@
718728
],
719729
"type": "string"
720730
},
731+
"codestyle-check": {
732+
"default": "Warning",
733+
"description": "%config.diagnostics.codestyle-check%",
734+
"enum": [
735+
"Error",
736+
"Warning",
737+
"Information",
738+
"Hint"
739+
],
740+
"type": "string"
741+
},
721742
"count-down-loop": {
722743
"default": "Warning",
723744
"description": "%config.diagnostics.count-down-loop%",

0 commit comments

Comments
 (0)