Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

eslint-prettier-husky-configeslint 更漂亮的哈士奇配置

Agent Skill

eslint-prettier-husky-config 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,176

周安装

49

GitHub Stars

3

下载量

392
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:eslint-prettier-husky-config(eslint 更漂亮的哈士奇配置)
来源仓库:https://github.com/hopeoverture/worldbuilding-app-skills
仓库路径:skills/eslint-prettier-husky-config
安装命令:
npx skills add https://github.com/hopeoverture/worldbuilding-app-skills --skill eslint-prettier-husky-config
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/hopeoverture/worldbuilding-app-skills --skill eslint-prettier-husky-config

简介

eslint-prettier-husky-config 为 Next.js/React 项目提供完整的代码质量工具链配置,包括 ESLint v9、Prettier 与 git hooks。

  • 适用于需要统一格式化、静态检查与提交拦截的团队开发环境。
  • 支持 TypeScript 扩展与 CI 流水线集成。
  • 安装命令:npx skills add https://github.com/hopeoverture/worldbuilding-app-skills --skill eslint-prettier-husky-config。
  • 使用前请确认是否允许安装 husky 钩子并修改 pre-commit 流程。

SKILL.md

ESLint, Prettier, Husky Configuration

Overview

Configure comprehensive code quality tooling for Next.js/React projects using ESLint v9 (flat config), Prettier, Husky git hooks, lint-staged, and CI lint checks.

Installation and Configuration Steps

1. Install Dependencies

Install required packages for ESLint v9, Prettier, and git hooks:

npm install -D eslint@^9 @eslint/js eslint-config-prettier eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-jsx-a11y prettier husky lint-staged

For TypeScript projects, add:

npm install -D @typescript-eslint/parser @typescript-eslint/eslint-plugin typescript-eslint

2. Create ESLint Flat Config

Create eslint.config.mjs in project root using the provided template from assets/eslint.config.mjs. This flat config format:

  • Uses modern ESLint v9 configuration
  • Includes React, React Hooks, and JSX accessibility rules
  • Supports TypeScript with type-aware linting
  • Ignores Next.js build directories and configuration files

Customize the configuration based on project needs:

  • Adjust languageOptions.parserOptions for different ECMAScript versions
  • Modify rules to match team preferences
  • Add additional plugins as needed

3. Create Prettier Configuration

Create .prettierrc in project root using the template from assets/.prettierrc. This configuration:

  • Sets 2-space indentation
  • Uses single quotes for strings
  • Removes trailing commas
  • Sets 100-character line width
  • Uses Unix line endings

Adjust formatting rules to match team style guide.

Create .prettierignore using assets/.prettierignore to exclude:

  • Build directories (.next, dist, out)
  • Dependencies (node_modules, package-lock.json)
  • Generated files
  • Public assets

4. Set Up Husky and Lint-Staged

Initialize Husky for git hooks:

npx husky init

This creates .husky/ directory with a pre-commit hook.

Replace the pre-commit hook content with:

npx lint-staged

Add lint-staged configuration to package.json using the example from references/package-json-config.md:

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

This runs ESLint and Prettier on staged files before each commit.

5. Add Package Scripts

Add the following scripts to package.json (see references/package-json-config.md for complete example):

{
  "scripts": {
    "lint": "eslint . --max-warnings 0",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "prepare": "husky"
  }
}

These scripts enable:

  • npm run lint - Check for linting errors (fails on warnings)
  • npm run lint:fix - Auto-fix linting issues
  • npm run format - Format all files with Prettier
  • npm run format:check - Check formatting without modifying files
  • prepare - Automatically set up Husky when installing dependencies

6. Create GitHub Actions Lint Workflow

Create .github/workflows/lint.yml using the template from assets/github-workflows-lint.yml. This workflow:

  • Runs on pull requests and pushes to main/master
  • Checks out code and sets up Node.js
  • Installs dependencies
  • Runs both linting and format checks
  • Fails CI if any issues are found

Customize the workflow:

  • Adjust Node.js version as needed
  • Modify branch names to match repository
  • Add caching for faster CI runs

7. Verify Setup

Test the complete setup:

  1. Lint check: Run npm run lint to verify ESLint configuration
  2. Format check: Run npm run format:check to verify Prettier configuration
  3. Pre-commit hook: Make a change and commit to test Husky and lint-staged
  4. CI workflow: Push to a branch and open a PR to verify GitHub Actions

Fix any configuration issues:

  • Review ESLint errors and adjust rules if needed
  • Format all files: npm run format
  • Commit the configuration changes

8. Team Documentation

Document the setup for team members (see references/team-documentation.md for template):

  • Explain the purpose of each tool
  • Provide setup instructions for new developers
  • Document how to temporarily bypass hooks (for emergencies only)
  • Include troubleshooting steps for common issues

Configuration Customization

ESLint Rules

Adjust rule severity in eslint.config.mjs:

  • "off" - Disable rule
  • "warn" - Warning (doesn't fail CI)
  • "error" - Error (fails CI)

Common customizations:

  • Disable specific rules: 'react/prop-types': 'off'
  • Adjust rule options: 'max-len': ['error', {code: 120}]
  • Add project-specific rules

Prettier Options

Modify formatting in .prettierrc:

  • printWidth - Line length limit
  • tabWidth - Spaces per indentation level
  • semi - Semicolon preference
  • singleQuote - Quote style
  • trailingComma - Trailing comma rules

Lint-Staged Configuration

Customize pre-commit checks in package.json:

  • Add file type patterns
  • Include additional commands (tests, type checking)
  • Adjust which files trigger which linters

Example with type checking:

{
  "lint-staged": {
    "*.{ts,tsx}": [
      "eslint --fix",
      "prettier --write",
      "tsc-files --noEmit"
    ]
  }
}

Troubleshooting

ESLint errors on existing code: Run npm run lint:fix then npm run format to auto-fix most issues.

Husky hooks not running: Ensure npm install was run after Husky initialization. Check .husky/pre-commit is executable.

CI failing but local passes: Verify Node.js version matches between local and CI. Check that all dependencies are in package.json.

Conflicts between ESLint and Prettier: Ensure eslint-config-prettier is last in extends array to disable conflicting ESLint formatting rules.

Resources

scripts/

No executable scripts needed for this skill.

references/

  • package-json-config.md - Complete package.json example with all scripts and lint-staged configuration
  • team-documentation.md - Template for documenting the setup for team members

assets/

  • eslint.config.mjs - ESLint v9 flat config template with React, TypeScript, and Next.js support
  • .prettierrc - Prettier configuration with recommended settings
  • .prettierignore - Files and directories to exclude from formatting
  • github-workflows-lint.yml - GitHub Actions workflow for automated lint checks

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.83%
按下载量换算144

Claude

29.74%
按下载量换算117

Cursor

19.31%
按下载量换算76

Gemini CLI

8.54%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills