mirror of
https://github.com/0x5eal/wg-lua.git
synced 2024-12-12 12:50:36 +00:00
23 lines
489 B
JSON
23 lines
489 B
JSON
{
|
|
// Lune
|
|
"luau-lsp.require.mode": "relativeToFile",
|
|
"luau-lsp.require.directoryAliases": {
|
|
"@lune/": "~/.lune/.typedefs/0.8.2/"
|
|
},
|
|
|
|
// Formatting
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"[luau][lua]": {
|
|
"editor.defaultFormatter": "JohnnyMorganz.stylua"
|
|
},
|
|
|
|
// Linting
|
|
"eslint.run": "onType",
|
|
"eslint.format.enable": true,
|
|
"cSpell.enabled": false,
|
|
|
|
// Misc
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"files.eol": "\n"
|
|
}
|