react-auditor 0.5.1

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
function Nav() {
  return (
    <nav>
      <img src="logo.png" />
      <h2>Section</h2>
      <h4>Subsection</h4>
      <button>Click me</button>
      <input placeholder="name" />
      <a href="/foo"></a>
      <label>Name <input /></label>
      <label>Name <input /></label>
    </nav>
  );
}

export default Nav;