-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf(json): migrate legacy json_encode/json_decode to lua module (#367)
* refactor(infra): embed rxi json.lua * perf(json): embed rxi json.lua * perf(json): ignore code coverage on json.lua * perf(json): ignore code cov in luacov * chore * chore * chore * chore(pr): format with stylua * perf(json): use 'vim.json' for nvim-0.9+ * chore * chore * chore * ci(depends): auto download and commit rxi/json.lua * ci(depends): fix syntax * ci(depends): auto-commit * chore(pr): format with stylua, add rxi/json.lua * chore --------- Co-authored-by: linrongbin16 <linrongbin16@users.noreply.github.com>
- Loading branch information
1 parent
0e0d063
commit 9e34209
Showing
11 changed files
with
691 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,6 @@ modules = { | |
["fzfx"] = "lua/fzfx.lua", | ||
["fzfx.*"] = "lua", | ||
} | ||
exclude = { | ||
"lua/fzfx/rxi_json.lua", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ coverage: | |
patch: | ||
default: | ||
threshold: 90% | ||
ignore: | ||
- "lua/fzfx/rxi_json.lua" |
Oops, something went wrong.