代码中有些外面copy过来的enum,导致很多的“should have an upper camel case name”warning。就是编码风格的问题,可是cargo fix
没有办法按照rust给的建议自动帮我改掉。。。。
有办法吗?
1
共 4 条评论, 1 页
代码中有些外面copy过来的enum,导致很多的“should have an upper camel case name”warning。就是编码风格的问题,可是cargo fix
没有办法按照rust给的建议自动帮我改掉。。。。
有办法吗?
评论区
写评论没安装clippy吧? https://github.com/rust-lang/rust-clippy
--
👇
mojocn: ```shell ➜ git:(master) ✗ cargo clippy --fix thread 'main' panicked at 'Usage of
--fix
requires `-Z unstable-options`', src/tools/clippy/src/main.rs:92:13 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace请问这个是什么原因啊
cargo clippy --fix 这个命令可以修复挺多问题,但是caml case/snake case的warning还是没有自动修改,估计需要设置某些clippy的参数。我还不知道怎么设置
试试 rust 1.55