fix: add lfs to luarc.json (#20979)

The sumneko lua language server keeps prompting me if I want to
"configure my workspace for lfs". These changes suppress that prompt.
This commit is contained in:
Gregory Anders 2022-11-06 14:31:54 -07:00 committed by GitHub
parent de500095b1
commit 16eed6e766
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 4 deletions

View File

@ -10,13 +10,16 @@
"before_each",
"after_each",
"setup",
"teardown"
"teardown",
"lfs"
]
},
"workspace": {
"library": {
"runtime/lua": true
},
"library": [
"runtime/lua",
"${3rd}/lfs/library"
],
"checkThirdParty": false,
"maxPreload": 2000,
"preloadFileSize": 1000
},