Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 33 additions & 27 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,34 @@
{
"rust-analyzer.diagnostics.disabled": [
"macro-error"
],
"yaml.customTags": [
"!Messages mapping",
"!Commands mapping",
"!Scalar sequence",
"!Stop",
"!FleshlightLaunchFW12Cmd mapping",
"!Linear sequence",
"!Write mapping",
"!Subscribe mapping",
"!Unsubscribe mapping",
"!Notifications sequence",
"!Reads sequence",
"!Events mapping",
"!Rotate sequence",
"!Battery",
"!RSSI",
"!Vibrate sequence",
"!Battery mapping"
],
"rust-analyzer.linkedProjects": [
".\\buttplug\\Cargo.toml"
],

}
"rust-analyzer": {
"diagnostics.disabled": [
"macro-error"
],
"linkedProjects": [
"./buttplug/Cargo.toml"
],
},
"yaml": {
"schemas": {
"buttplug/buttplug-device-config/device-config-v3/buttplug-device-config-schema-v3.json": "buttplug/buttplug-device-config/device-config-v3/buttplug-device-config-v3.yml"
},
"customTags": [
"!Messages mapping",
"!Commands mapping",
"!Scalar sequence",
"!Stop",
"!FleshlightLaunchFW12Cmd mapping",
"!Linear sequence",
"!Write mapping",
"!Subscribe mapping",
"!Unsubscribe mapping",
"!Notifications sequence",
"!Reads sequence",
"!Events mapping",
"!Rotate sequence",
"!Battery",
"!RSSI",
"!Vibrate sequence",
"!Battery mapping"
],
},
}
Loading