diff --git a/rfcs/config-luaurc.md b/rfcs/config-luaurc.md index e6d13de8..c42b0942 100644 --- a/rfcs/config-luaurc.md +++ b/rfcs/config-luaurc.md @@ -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 } ```