BeClaude

rust-lint

2Community RegistryGeneralby Cheolwan Park · MIT

Automatically format Rust files with rustfmt and provide on-demand clippy linting

First seen 4/17/2026

Summary

This skill automatically formats Rust source files using rustfmt when you ask it to, and provides on-demand linting with clippy to catch common mistakes and improve code quality.

  • It helps Rust developers maintain consistent code style and identify potential issues without leaving the editor.

Install & Usage

1
Add a marketplace
/plugin marketplace add <org/repo>
2
Install the plugin

Add the configuration to /plugin install rust-lint@<marketplace>

3
Manage with /plugin
/plugin

Use Cases

Automatically format all Rust files in a project to comply with standard rustfmt style.
Run clippy on a specific Rust file to get actionable lint warnings and suggestions.
Check a new Rust module for common pitfalls before committing code.
Enforce consistent formatting across a team codebase by running rustfmt on save.
Quickly fix formatting issues in a pull request diff without manual editing.
Identify performance or correctness issues in Rust code using clippy's extensive lint set.

Usage Examples

1

/rust-lint format src/main.rs

2

Run clippy on the current Rust project and show warnings.

3

Format all .rs files in the src directory with rustfmt.

View source on GitHub
rust

Security Audits

LicensePassSourceWarnRepositoryPass

Frequently Asked Questions

What is rust-lint?

This skill automatically formats Rust source files using rustfmt when you ask it to, and provides on-demand linting with clippy to catch common mistakes and improve code quality. It helps Rust developers maintain consistent code style and identify potential issues without leaving the editor.

How to install rust-lint?

To install rust-lint: add a marketplace (/plugin marketplace add <org/repo>), then add the config to /plugin install rust-lint@<marketplace>. Finally, /plugin in Claude Code.

What is rust-lint best for?

rust-lint is a plugin categorized under General. It is designed for: rust. Created by Cheolwan Park.

What can I use rust-lint for?

rust-lint is useful for: Automatically format all Rust files in a project to comply with standard rustfmt style.; Run clippy on a specific Rust file to get actionable lint warnings and suggestions.; Check a new Rust module for common pitfalls before committing code.; Enforce consistent formatting across a team codebase by running rustfmt on save.; Quickly fix formatting issues in a pull request diff without manual editing.; Identify performance or correctness issues in Rust code using clippy's extensive lint set..