< 返回版块

overheat 发表于 2021-09-11 22:31

代码中有些外面copy过来的enum,导致很多的“should have an upper camel case name”warning。就是编码风格的问题,可是cargo fix没有办法按照rust给的建议自动帮我改掉。。。。

有办法吗?

评论区

写评论
awsa2ron 2021-09-17 15:44

没安装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


请问这个是什么原因啊
mojocn 2021-09-14 17:07
➜   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

请问这个是什么原因啊

awsa2ron 2021-09-12 10:59

cargo clippy --fix 这个命令可以修复挺多问题,但是caml case/snake case的warning还是没有自动修改,估计需要设置某些clippy的参数。我还不知道怎么设置

ttys3 2021-09-11 23:37

试试 rust 1.55

cargo clippy --fix
1 共 4 条评论, 1 页