linter

star 51

Linter Guidelines

caido-community By caido-community schedule Updated 3/19/2026

name: linter description: Linter Guidelines

Linter

We have a built-in ESLint linter configured at the root folder. After making any significant change, always run the validation tests with mise run validate and fix all potential issues.

Most common mistakes that lead to linter errors

Lint Rule: Unexpected nullable string value in conditional. Please handle nullish or empty cases explicitly

To prevent this, when comparing strings, instead of writing:

if (!str) {}

do this:

if (str !== undefined) {}
Install via CLI
npx skills add https://github.com/caido-community/shift --skill linter
Repository Details
star Stars 51
call_split Forks 10
navigation Branch main
article Path SKILL.md
More from Creator
caido-community
caido-community Explore all skills →