wg-lua/.vscode/settings.json

27 lines
555 B
JSON
Raw Normal View History

{
// 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"
},
2024-03-28 15:57:29 +05:30
"[shellscript]": {
"editor.defaultFormatter": "mkhl.shfmt"
},
2024-03-27 16:45:28 +05:30
// Linting
"eslint.run": "onType",
"eslint.format.enable": true,
"cSpell.enabled": false,
2024-03-27 16:45:28 +05:30
// Misc
"typescript.tsdk": "node_modules/typescript/lib",
"files.eol": "\n"
}