File tree Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 2828
2929lua_ls_project_root = ".."
3030lua_ls_backend = "luals"
31- lua_ls_project_directories = [
32- ".."
33- ]
31+ lua_ls_apidoc_default_options = {
32+ "undoc-members" : "" ,
33+ "protected-members" : "" ,
34+ "globals" : "" ,
35+ }
3436lua_ls_apidoc_roots = {
3537 "unicorn" : "api" ,
3638}
Original file line number Diff line number Diff line change @@ -14,4 +14,5 @@ documentation for details.
1414.. toctree ::
1515 :maxdepth: 2
1616 :caption: Contents:
17+
1718 api/index.rst
Original file line number Diff line number Diff line change 11--- A modular package manager.
22
33package.path = " /lib/?.lua;/lib/?;/lib/?/init.lua;" .. package.path
4- --- !doctype module
5- ---- @class lib.module
64local unicorn = {}
75--- !doctype module
8- ---- @class lib.module
6+ --- @class unicorn.core
97unicorn .core = {}
108unicorn .util = require (" unicorn.util" )
119local semver = require (" semver" )
Original file line number Diff line number Diff line change 1- --- @namespace unicorn
21package.path = " /lib/?.lua;/lib/?;/lib/?/init.lua;" .. package.path
2+
3+ --- !doctype module
4+ --- @class unicorn
35local unicorn = {}
46unicorn .core = require (" unicorn.core" )
57unicorn .util = require (" unicorn.util" )
Original file line number Diff line number Diff line change 11--- Utility functions for use with unicornpkg.
22
33local unicorn = {}
4+ --- !doctype module
5+ --- @class unicorn.core
46unicorn .util = {}
57
68local http = http
You can’t perform that action at this time.
0 commit comments