Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Language Linting Skill

ASecurity

Per-language linting rules reference — Python Ruff, JS/TS ESLint, Java Checkstyle/PMD/SpotBugs, C# dotnet format/Roslyn/StyleCop: rules, configs, error guidance. Triggers: ruff rules, eslint config, checkstyle. Loaded by linting-workflow-skill and linting-subagent (the executor); gate semantics live in verification-loop-skill.

6 stars
0 votes
0 copies
0 views
Added 9/20/2026
documentationpythongojavac#springsecurity

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add darellchua2/opencode-config-template --skill language-linting-skill --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Language Linting Skill?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Language Linting Skill
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/darellchua2-language-linting-skill/badge)](https://www.skillsdirectory.com/skills/darellchua2-language-linting-skill)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: language-linting-skill
description: "Per-language linting rules reference — Python Ruff, JS/TS ESLint, Java Checkstyle/PMD/SpotBugs, C# dotnet format/Roslyn/StyleCop: rules, configs, error guidance. Triggers: ruff rules, eslint config, checkstyle. Loaded by linting-workflow-skill and linting-subagent (the executor); gate semantics live in verification-loop-skill."
license: Apache-2.0
compatibility: opencode
category: Language-Specific
---

## What I do

Per-language lint execution and error resolution on top of `linting-workflow-skill` (which owns the generic detect→fix loop and delegation). This file maps languages → linters, detection commands, and the fix guidance that actually needs saying.

## When to use me

Linting a polyglot codebase; decoding a specific linter error; configuring lint in CI.

**Language detection**: file extensions + manifests (`.py`/pyproject → Ruff; `.ts/.tsx/.js/.jsx`/package.json → ESLint; `.java`/pom.xml|build.gradle → Checkstyle+PMD+SpotBugs; `.cs`/`.csproj` → dotnet format + Roslyn analyzers). Orchestration + subagent delegation → `linting-workflow-skill`.

## Command matrix

| Language | Linter(s) | Commands |
|---|---|---|
| Python | Ruff | `ruff check .` · `ruff check --fix` · `ruff format .` (config in pyproject `[tool.ruff]`) |
| JS/TS | ESLint (+Prettier) | `npx eslint . --ext .ts,.tsx,.js,.jsx` · `--fix` for autofixables; package manager via lockfile (pnpm-lock/yarn.lock/package-lock); Prettier for formatting, ESLint for correctness |
| Java | Checkstyle (style) + PMD (design) + SpotBugs (bytecode bugs) | Maven: `mvn checkstyle:check pmd:check spotbugs:check` · Gradle: `./gradlew checkstyleMain pmdMain spotbugsMain` |
| C# | dotnet format + Roslyn/StyleCop analyzers | `dotnet format --verify-no-changes` (CI) · `dotnet format` (fix); severity via `.editorconfig` |

## House rules

- **Fix semantics**: autofix for mechanical issues (`--fix`, `ruff format`); manual review for semantic findings (PMD design, SpotBugs correctness, Roslyn analyzers) — never blanket-suppress.
- **Zero NEW errors on changed files** is the gate (pre-existing noted, not blocked) — matches `plan-execution-skill` --gate semantics.
- Suppressions carry a reason and scope (`// noqa: E501 # long URL in docstring`), never bare `// eslint-disable-next-line`.
- Error-code decoding: match the code to the rule family (Ruff `E/F/I/N/UP/B/SIM/C4`, ESLint plugin prefixes, Checkstyle module names) and fix the pattern, not the instance.
- Spring Boot: enable Bean Validation + actuator health checks as part of the lint pass config (house standard for Java services).

**Related:** `security-audit-skill` (security scanning, not lint) · `linting-workflow-skill` (generic loop).

> Removed 2026-09: per-linter config file listings, per-error-code explanation tables, package-manager detection walkthroughs, Spring/Gradle XML config dumps, worked fix transcripts — each linter's rule catalog is model-known; the matrix + fix semantics + suppression discipline are the durable content.

Attribution

darellchua2darellchua2
View sourceMore from darellchua2 →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Context Fundamentals

Understand the components, mechanics, and constraints of context in agent systems. Use when designing agent architectures, debugging context-related failures, or optimizing context usage.

179001 votes

release-notes

Draft release notes and changelog entries from git history or merged PRs between two refs (tags/SHAs/branches), including breaking changes, migrations, and upgrade steps. Use when the user asks for release notes, changelog updates, or a GitHub Release draft.

1301 votes

docs-style-guide

Documentation style guide enforcer by @planetabhi. Applies and reviews the writing style guide when authoring or editing product documentation and tutorials. Use to check prose for voice, tense, word choice, inclusive language, formatting, code block, UI, Markdown, and number/date conventions.

11 votes

Caveman Help

Quick-reference card for all caveman modes, skills, and commands. One-shot display, not a persistent mode. Trigger: /caveman-help, "caveman help", "what caveman commands", "how do I use caveman".

1023330 votes

How It Works

Explain how claude-mem captures observations, when memory injection kicks in, and where data lives. Use when the user asks "how does claude-mem work?" or "what is this thing doing?".

942310 votes
View all in documentation →