マルチモジュール化をrelease/v0.1.0-beta.10にマージ #20
Annotations
2 warnings
build
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: giraffate/clippy-action@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
build:
wasm/src/lib.rs#L38
[clippy] reported by reviewdog 🐶
<pre><code>warning: you should consider adding a `Default` implementation for `Parser`
--> wasm/src/lib.rs:38:5
|
38 | / pub fn new() -> Self {
39 | | Parser {}
40 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
= note: `#[warn(clippy::new_without_default)]` on by default
help: try adding this
|
36 + impl Default for Parser {
37 + fn default() -> Self {
38 + Self::new()
39 + }
40 + }
|
</code></pre>
Raw Output:
wasm/src/lib.rs:38:5:w:
<pre><code>warning: you should consider adding a `Default` implementation for `Parser`
--> wasm/src/lib.rs:38:5
|
38 | / pub fn new() -> Self {
39 | | Parser {}
40 | | }
| |_____^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
= note: `#[warn(clippy::new_without_default)]` on by default
help: try adding this
|
36 + impl Default for Parser {
37 + fn default() -> Self {
38 + Self::new()
39 + }
40 + }
|
</code></pre>
__END__
|