Add a TODO (and issue) for lexical scoping extension for the MOO lang… #18
Annotations
3 warnings
build
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
useless use of `format!`:
crates/console-host/src/main.rs#L262
warning: useless use of `format!`
--> crates/console-host/src/main.rs:262:32
|
262 | .print(format!("Received disconnect event; Session ending."))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"Received disconnect event; Session ending.".to_string()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
|
useless use of `format!`:
crates/console-host/src/main.rs#L247
warning: useless use of `format!`
--> crates/console-host/src/main.rs:247:32
|
247 | .print(format!(
| ________________________________^
248 | | "{}",
249 | | match msg.event() {
250 | | moor_values::model::Event::TextNotify(s) => s,
251 | | }
252 | | ))
| |_________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_format
= note: `#[warn(clippy::useless_format)]` on by default
help: consider using `.to_string()`
|
247 ~ .print((match msg.event() {
248 + moor_values::model::Event::TextNotify(s) => s,
249 ~ }).to_string())
|
|