react-auditor 0.1.9

A blazing-fast Rust CLI to scan JS/TS/React code for best practices, quality, and security issues.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod consistent_component_naming;
pub mod effect_deps_complete;
pub mod hook_rules;
pub mod no_direct_mutation;
pub mod no_duplicate_props;
pub mod no_forward_ref;
pub mod no_index_key;
pub mod no_inline_functions;
pub mod no_inline_styles;
pub mod no_missing_key;
pub mod no_multiple_render_methods;
pub mod no_ref_in_component_name;
pub mod no_set_state_in_effect;
pub mod no_set_state_in_render;
pub mod no_side_effects_in_render;
pub mod no_unnecessary_memo;
pub mod prefer_function_components;