Update config-luaurc.md

Fix example
This commit is contained in:
Arseny Kapoulkine 2021-06-07 19:32:25 -07:00 committed by GitHub
parent c6c72d1bc8
commit 0e3642de35
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,14 +26,14 @@ applied. When multiple files are used, the file closer to the .lua file override
Example of a valid .luaurc file:
```json
```json5
{
"mode": "nonstrict"
"mode": "nonstrict",
"lint": {
"*": "fatal",
"LocalUnused": "disabled",
},
"globals": ["expect"] // TestEZ
"globals": ["expect"] // TestEZ
}
```