lune/.vscode/settings.json

29 lines
830 B
JSON
Raw Normal View History

2023-01-19 01:47:14 +00:00
{
// Luau - disable Roblox features, enable Lune typedefs & requires
"luau-lsp.sourcemap.enabled": false,
2023-01-19 01:47:14 +00:00
"luau-lsp.types.roblox": false,
"luau-lsp.require.mode": "relativeToFile",
// Luau - ignore type defs file in docs dir and dev scripts we use
"luau-lsp.ignoreGlobs": [
"docs/*.d.luau",
"packages/lib-roblox/scripts/*.luau",
"tests/roblox/rbx-test-files/**/*.lua",
"tests/roblox/rbx-test-files/**/*.luau"
],
// Rust
2023-01-19 02:11:47 +00:00
"rust-analyzer.check.command": "clippy",
// Formatting
2023-01-19 01:47:14 +00:00
"editor.formatOnSave": true,
"stylua.searchParentDirectories": true,
"prettier.tabWidth": 2,
"[luau][lua]": {
"editor.defaultFormatter": "JohnnyMorganz.stylua"
},
"[json][jsonc][markdown][yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
}
}