naming-conventions

Detect naming issues in TypeScript/JavaScript code and suggest fixes.

Updated Apr 12, 2026
One-click install
npx skills add https://github.com/gil00pita/lanify --skill naming-conventions-gil00pita
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: naming-conventions
Source: https://github.com/gil00pita/lanify/tree/main/.agents/skills/naming-conventions
Command: npx skills add https://github.com/gil00pita/lanify --skill naming-conventions-gil00pita

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Fixes naming convention issues including unused variables, single-letter names, and non-standard abbreviations. Use when encountering no-unused-vars errors or reviewing variable naming.

Core Features & Use Cases

  • Detects common naming problems in TypeScript/JavaScript projects
  • Provides guidance on when to rename, omit, or refactor variables
  • Helps enforce consistent naming standards during code reviews

Quick Start

Run the script against your source code directory to detect naming issues.

Frequently Asked Questions about naming-conventions

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find unused variables and single-letter names in TypeScript code?

To fix naming issues in TypeScript code, this script parses your source directory and flags unused variables, single-letter identifiers, and non-standard abbreviations. It provides suggestions for renaming or refactoring without automatically executing changes.

What is the best way to resolve no-unused-vars errors during a JavaScript code review?

The best way to resolve no-unused-vars errors during a JavaScript code review is to detect unused variables and apply guidance on when to rename, omit, or refactor patterns. This enforces consistent naming standards across your project.

Can I automatically refactor non-standard abbreviations across a large codebase?

You cannot automatically refactor non-standard abbreviations across a large codebase with this tool, as it provides suggestions without executing changes. It relies on simple parsing to flag patterns, leaving the actual refactoring to manual or separate automated processes.

Does this naming convention script work with ESLint to identify code quality issues?

This naming convention script works alongside ESLint by identifying code quality issues like single-letter identifiers and unused variables. It helps enforce consistent naming standards during code reviews by providing guidance without directly modifying your files.

When should I rename or omit a variable flagged for poor naming conventions?

You should rename or omit a variable based on the specific guidance provided for each flagged pattern. The script evaluates your TypeScript code and advises whether renaming, omitting, or refactoring the variable is the most appropriate action for clarity.