Cleanup & refactor
Some checks failed
Continous Integration / Build (push) Successful in 11s
Continous Integration / Lint (push) Successful in 9s
Continous Integration / Styling (push) Failing after 3s
Continous Integration / Unit Testing (push) Failing after 30s

This commit is contained in:
marked 2025-05-07 00:37:24 +02:00
parent d3b6212463
commit 2a6907434a
50 changed files with 937 additions and 4110 deletions

View file

@ -1,44 +1,47 @@
// Folder-specific settings
//
// For a full list of overridable settings, and general information on folder-specific settings,
// see the documentation: https://zed.dev/docs/configuring-zed#folder-specific-settings
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
{
"lsp": {
"luau-lsp": {
"settings": {
"luau-lsp": {
"diagnostics": {
"workspace": false
},
"completion": {
"imports": {
"enabled": true,
"suggestServices": true,
"suggestRequires": false
"suggestRequires": true,
"stringRequires": {
"enabled": true
}
}
},
"sourcemap": {
"rojoProjectFile": "dev.project.json"
},
"require": {
"mode": "relativeToFile"
}
},
"ext": {
"roblox": {
"enabled": false
"enabled": false,
"security_level": "roblox_script"
},
"fflags": {
"override": {
"LuauTinyControlFlowAnalysis": "true"
},
"enable_new_solver": true,
"sync": true,
"enable_by_default": false
},
"binary": {
"ignore_system_version": false
}
}
}
}
},
"languages": {
"TypeScript": {
"tab_size": 4
}
"file_types": {
"Luau": ["lua"]
}
}