The title tags need to be descriptive

The title and description tags need to be descriptive

For SEO, make sure your title and description tag must be descriptive (at least 3 words)

Examples of incorrect code for this rule:

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
		<title>My App</title>
	</head>
	<body></body>
</html>

Examples of correct code for this rule:

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
		<title>My really cool website which scan websites</title>
	</head>
	<body></body>
</html>

Disallow Null Comparisons (no-eq-null)

Use triple equals instead of double equals