askill
standards-enforcement

standards-enforcementSafety 85Repository

Establish and enforce coding standards, best practices, and architectural patterns across the codebase using linters, formatters, and code review processes. Use when setting up ESLint/Prettier, configuring linting rules, creating code style guides, implementing pre-commit hooks, establishing naming conventions, enforcing TypeScript strict mode, maintaining consistency, conducting architecture reviews, or defining team coding standards.

1 stars
1.2k downloads
Updated 2/13/2026

Package Files

Loading files...
SKILL.md

Standards Enforcement - Maintaining Code Quality

When to use this skill

  • Setting up ESLint, Prettier, and code formatters
  • Configuring linting rules and code standards
  • Creating team code style guides
  • Implementing pre-commit hooks with Husky
  • Establishing naming conventions
  • Enforcing TypeScript strict mode
  • Maintaining code consistency across team
  • Conducting code review for standards compliance
  • Defining architectural patterns and rules
  • Setting up import ordering and organization
  • Enforcing test coverage requirements
  • Creating and maintaining coding guidelines

When to use this skill

  • Setting up project guidelines, code reviews, enforcing best practices, maintaining consistency.
  • When working on related tasks or features
  • During development that requires this expertise

Use when: Setting up project guidelines, code reviews, enforcing best practices, maintaining consistency.

Tools

ESLint

{
  "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
  "rules": {
    "no-console": "warn",
    "no-unused-vars": "error",
    "@typescript-eslint/no-explicit-any": "error"
  }
}

Prettier

{
  "semi": true,
  "singleQuote": true,
  "tabWidth": 2,
  "trailingComma": "es5"
}

Husky + lint-staged

{
  "lint-staged": {
    "*.{js,ts,tsx}": ["eslint --fix", "prettier --write"],
    "*.{json,md}": ["prettier --write"]
  }
}

Resources

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

52/100Analyzed 2/20/2026

A moderately useful skill covering ESLint, Prettier, and Husky configuration for code standards enforcement. Provides practical config examples but lacks depth - mentions architectural patterns and code review processes in description but doesn't cover them. The duplicate "When to use" section and thin content (no setup steps, no installation commands) reduce its usefulness. Located in .factory directory suggesting internal/project-specific context.

85
55
65
45
50

Metadata

Licenseunknown
Version-
Updated2/13/2026
Publisherpascallammers

Tags

githublintingtesting