Created
September 4, 2025 15:17
-
-
Save gaymeowing/23dca875b9c5c73616b514350e5f5159 to your computer and use it in GitHub Desktop.
lua code spell config https://github.com/streetsidesoftware/vscode-spell-checker
This file contains hidden or 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
Show hidden characters
| { | |
| "cSpell.languageSettings": [ | |
| { | |
| "name": "lua", | |
| "languageId": [ "luau", "lua" ], | |
| "patterns": [ | |
| { | |
| "name": "short-comment", | |
| "pattern": "(?<![-])--.*" | |
| }, | |
| { | |
| "name": "long-comment", | |
| "pattern": "(?<![-])--\\[(=*)\\[(.|\n)*?\\]\\1\\]" | |
| } | |
| ], | |
| "includeRegExpList": [ | |
| "short-comment", | |
| "long-comment" | |
| ] | |
| } | |
| ], | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment