- add the imported server task addon to the current framework with task ownership, task catalog, mission-manager attack generation, org-owned reward routing, participant notifications, and reputation syncing - restructure org persistence so core org data, assets, fleet, and members are handled through the current Redis/extension model with matching Rust repository and service updates - wire the client CAD addon into the framework, actor device action, shared web UI bridge pattern, and task listing/acceptance flow - add a source-driven CAD web UI layout with ui.config.mjs and extend the shared web UI builder to support custom HTML template pages for multi-surface UIs
36 lines
721 B
TOML
36 lines
721 B
TOML
[sqf.banned_commands]
|
|
options.banned = [
|
|
# "spawn", # Scheduled should be avoided whenever possible
|
|
"execVM", # Script files should never be run directly, they should be functions
|
|
# "remoteExec", # CBA events should be used for networking
|
|
]
|
|
|
|
[sqf.banned_macros]
|
|
options.release = [
|
|
"DEBUG_MODE_FULL",
|
|
"DISABLE_COMPILE_CACHE"
|
|
]
|
|
|
|
[sqf.this_call]
|
|
enabled = true
|
|
|
|
[sqf.undefined]
|
|
enabled = true
|
|
options.check_orphan_code = true
|
|
|
|
[sqf.unused]
|
|
enabled = true # many false positives without DEBUG_MODE_FULL
|
|
options.check_params = false
|
|
|
|
[sqf.shadowed]
|
|
enabled = false
|
|
|
|
[sqf.not_private]
|
|
enabled = true
|
|
|
|
[config.file_type]
|
|
options.allow_no_extension = false
|
|
|
|
[stringtables.usage]
|
|
options.ignore_unused = true
|