Clippy
A bunch of lints to catch common mistakes and improve your Rust code. Book: https://doc.rust-lang.org/clippy/ (by rust-lang)
sublime-rust
The official Sublime Text 4 package for the Rust Programming Language (by rust-lang)
Clippy | sublime-rust | |
---|---|---|
121 | 2 | |
11,686 | 796 | |
0.8% | 0.6% | |
10.0 | 4.7 | |
7 days ago | 25 days ago | |
Rust | Python | |
GNU General Public License v3.0 or later | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Clippy
Posts with mentions or reviews of Clippy.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-11-15.
-
Automated Testing and Dev Containers
Firstly, I added a section to run the code formatter rustfmt and the linter clippy:
-
More than you've ever wanted to know about errors in Rust
I couldn't find it in the API guidelines either. From what I understand, the idea is that any trait bounds, which includes generic type parameter bounds and lifetime bound on a type (struct or enum) would be repeated back in the impl block
there is a nice discussion on this issue here: https://github.com/rust-lang/rust-clippy/issues/1689
-
New clippy lint: detecting `&mut` which could be `&` in function arguments
You should not blindly follow clippy lints. They are sometimes wrong. Another example https://github.com/rust-lang/rust-clippy/issues/9782 .
- Let else will finally be formatted by rustfmt soon
-
My deduplication solution written in Rust beats everything else: casync, borg...
I often write () = f() to assert that f() is unit. Unfortunately clippy warns on such code ( https://github.com/rust-lang/rust-clippy/issues/9048 ). There are very recent pull requests for this bug, so hopefully this bug will be fixed very soon. But meanwhile I invented this workaround: [()] = [f()] :)
-
Any open source projects willing to take in juniors?
Apart from running clippy on many projects being essential, clippy is also an exceptionally welcoming project, no matter your prior knowledge.
-
Any new Opensource projects in (rust) looking for contributors. I want to start my journey as an OSS contributor.
clippy is a great place to get started :) though it isn't exactly new.
-
I want to contribute in a big project
clippy is also pretty compiler-adjacent and unlike rust-analyzer uses rustc's internal APIs. Don't let the size of the code base scare you off! It's actually feasible for a newcomer to contribute even such a substantial change as a new lint, and we have issues labeled as "good first issue" that come with mentorship, so you don't need to go it alone.
-
rustc-plugin: A framework for writing plugins that integrate with the Rust compiler
Yes, you could use it to write a lint. Although you might find it easier to just fork Clippy and add your own lints to their existing framework.
-
Reading Rust
Check out the readme for more information.
sublime-rust
Posts with mentions or reviews of sublime-rust.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-01-24.
-
Hey Rustaceans! Got an easy question? Ask here (4/2022)!
You might have to make your own syntax rule, I rate. Did you have a look at rust-enhanced?
-
I have decided to learn rust any tips?
Use a real IDE with integration for Rust. There's Rust for VSCode, Rust for Vim/CoC, Rust for Sublime Text, and Rust for IntelliJ (my personal favorite).
What are some alternatives?
When comparing Clippy and sublime-rust you can also consider the following projects:
rustfmt - Format Rust code
rust-analyzer - A Rust compiler front-end for IDEs [Moved to: https://github.com/rust-lang/rust-analyzer]
rust.vim - Vim configuration for Rust.
cargo-linked - Display linked packages for compiled rust binaries
vscode-rust
Rust for Visual Studio Code
rust-analyzer - A Rust compiler front-end for IDEs
CodeLLDB - A native debugger extension for VSCode based on LLDB
coc-rust-analyzer - rust-analyzer extension for coc.nvim
Clippy vs rustfmt
sublime-rust vs rust-analyzer
Clippy vs rust-analyzer
sublime-rust vs rustfmt
Clippy vs rust.vim
sublime-rust vs cargo-linked
Clippy vs vscode-rust
sublime-rust vs Rust for Visual Studio Code
Clippy vs Rust for Visual Studio Code
sublime-rust vs rust-analyzer
Clippy vs CodeLLDB
sublime-rust vs coc-rust-analyzer