Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

eslinteslint 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

245

周安装

10

GitHub Stars

6

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:eslint(eslint 搜索)
来源仓库:https://github.com/ghosttypes/ff-5mp-api-ts
仓库路径:skills/eslint
安装命令:
npx skills add https://github.com/ghosttypes/ff-5mp-api-ts --skill eslint
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ghosttypes/ff-5mp-api-ts --skill eslint

简介

ESLint 搜索技能辅助 API 设计和接口文档生成,支持字段命名和结构检查。

  • 适用于服务集成说明和联调支持等前后端协作场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令集成到宿主环境。
  • 使用时需结合现有 schema 或接口样例,避免凭空补字段信息。
  • eslint 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

ESLint Development

Professional ESLint integration for JavaScript and TypeScript codebases. This skill provides comprehensive guidance for configuring, using, and extending ESLint to enforce code quality standards.

Latest ESLint version: 9.32.2 (December 2025)

Quick Start

Install ESLint

npm install --save-dev eslint
npx eslint --init

Basic Configuration (Flat Config - ESLint 9+)

// eslint.config.js
export default [
  {
    files: ["**/*.js"],
    rules: {
      "no-unused-vars": "error",
      "no-console": "warn"
    }
  }
];

Run ESLint

npx eslint .                 # Lint all files
npx eslint --fix .           # Auto-fix issues
npx eslint src/**/*.js       # Lint specific files

Core Workflows

1. Project Setup

New projects:

  1. Install ESLint: npm install --save-dev eslint
  2. Initialize config: npx eslint --init (interactive)
  3. Review generated eslint.config.js
  4. Run first lint: npx eslint.

Existing projects:

  1. Review current configuration in eslint.config.js or .eslintrc.*
  2. Understand applied rules and plugins
  3. Migrate to flat config if using legacy format (see references/use/configure/migration-guide.md)

2. Configuration

ESLint uses flat config format (eslint.config.js) in v9+. Legacy formats (.eslintrc.*) are deprecated.

Key configuration areas:

  • Files: Specify which files to lint
  • Rules: Enable/disable specific rules and set severity
  • Language options: Parser, source type, ECMAScript version
  • Plugins: Extend with custom rules
  • Ignore patterns: Exclude files from linting

See references/use/configure/configuration-files.md for complete guide.

3. Rule Management

Rule severity levels:

  • "off" or 0 - Disable rule
  • "warn" or 1 - Warning (doesn't affect exit code)
  • "error" or 2 - Error (exit code 1)

Configure rules:

export default [
  {
    rules: {
      "no-unused-vars": "error",
      "quotes": ["error", "double"],
      "semi": ["error", "always"],
      "no-console": "off"
    }
  }
];

Find specific rule documentation:

  • All 300+ core rules documented in references/rules/
  • Rule names are kebab-case (e.g., no-unused-vars.md, prefer-const.md)

4. Fixing Issues

Auto-fix:

npx eslint --fix .           # Fix all auto-fixable issues
npx eslint --fix src/        # Fix specific directory
npx eslint --fix-dry-run .   # Preview fixes without applying

Manual fixes:

  1. Read error message and rule name
  2. Look up rule in references/rules/[rule-name].md
  3. Understand the issue and correct code examples
  4. Apply fix or disable rule if not applicable

Disable rules:

// Disable for one line
// eslint-disable-next-line no-console
console.log("debug");

// Disable for entire file
/* eslint-disable no-console */

// Disable specific rule in block
/* eslint-disable no-unused-vars */
const temp = getData();
/* eslint-enable no-unused-vars */

5. Integration

Editor integration:

  • Install ESLint extension for your editor (VS Code, Sublime, etc.)
  • Enables real-time linting and auto-fix on save

Build system integration:

  • Add to npm scripts: "lint": "eslint."
  • CI/CD: Run npm run lint in build pipeline
  • Pre-commit hooks: Use with husky or lint-staged

See references/use/integrations.md for editor and tool integrations.

Advanced Usage

Custom Rules

Create project-specific rules to enforce custom patterns:

// eslint.config.js
import myCustomRule from './rules/my-custom-rule.js';

export default [
  {
    plugins: {
      local: { rules: { 'my-custom-rule': myCustomRule } }
    },
    rules: {
      'local/my-custom-rule': 'error'
    }
  }
];

See references/extend/custom-rules.md for complete guide.

Plugins

Extend ESLint with community plugins for frameworks and libraries:

import react from 'eslint-plugin-react';
import typescript from '@typescript-eslint/eslint-plugin';

export default [
  {
    plugins: { react, typescript },
    rules: {
      'react/jsx-uses-react': 'error',
      '@typescript-eslint/no-unused-vars': 'error'
    }
  }
];

See references/extend/plugins.md for plugin development and usage.

TypeScript

For TypeScript projects, use @typescript-eslint:

npm install --save-dev @typescript-eslint/parser @typescript-eslint/eslint-plugin
import tseslint from '@typescript-eslint/eslint-plugin';
import parser from '@typescript-eslint/parser';

export default [
  {
    files: ['**/*.ts', '**/*.tsx'],
    languageOptions: {
      parser: parser,
      parserOptions: {
        project: './tsconfig.json'
      }
    },
    plugins: { '@typescript-eslint': tseslint },
    rules: {
      '@typescript-eslint/no-explicit-any': 'warn',
      '@typescript-eslint/explicit-function-return-type': 'error'
    }
  }
];

See references/extend/custom-parsers.md for parser configuration.

Documentation Organization

Complete ESLint documentation is organized in references/:

Core Usage

  • references/use/getting-started.md - Initial setup and installation
  • references/use/command-line-interface.md - CLI options and flags
  • references/use/core-concepts/ - Core ESLint concepts and terminology

Configuration

  • references/use/configure/configuration-files.md - Flat config format (v9+)
  • references/use/configure/rules.md - Rule configuration patterns
  • references/use/configure/language-options.md - Parser and language settings
  • references/use/configure/plugins.md - Plugin configuration
  • references/use/configure/ignore.md - Ignoring files and directories
  • references/use/configure/migration-guide.md - Migrating from legacy config

Rules Reference

  • references/rules/ - All 300+ core ESLint rules

- Each rule has its own file (e.g., no-console.md, prefer-const.md) - Includes description, examples, options, and use cases - Organized alphabetically by rule name

Extension & Customization

  • references/extend/custom-rules.md - Creating custom ESLint rules
  • references/extend/custom-parsers.md - Building custom parsers
  • references/extend/plugins.md - Plugin development and publishing
  • references/extend/shareable-configs.md - Creating shareable configurations
  • references/extend/selectors.md - AST selectors for advanced rules

Integration

  • references/integrate/nodejs-api.md - Programmatic ESLint API usage
  • references/use/integrations.md - Editor and tool integrations

Troubleshooting

  • references/use/troubleshooting/ - Common error messages and solutions

- Covers plugin loading errors, config resolution issues, and more

Migration Guides

  • references/use/migrate-to-9.0.0.md - Migrating to ESLint 9.x
  • references/use/migrate-to-8.0.0.md - Migrating to ESLint 8.x
  • Additional migration guides for older versions

Common Patterns

Monorepo Configuration

export default [
  {
    files: ["packages/*/src/**/*.js"],
    rules: { "no-console": "error" }
  },
  {
    files: ["packages/cli/src/**/*.js"],
    rules: { "no-console": "off" }  // Allow console in CLI package
  }
];

Environment-Specific Rules

export default [
  {
    files: ["src/**/*.js"],
    rules: { "no-console": "error" }
  },
  {
    files: ["**/*.test.js", "**/*.spec.js"],
    rules: { "no-console": "off" }  // Allow console in tests
  }
];

Shared Configuration

// config/base.js
export default {
  rules: {
    "no-unused-vars": "error",
    "semi": ["error", "always"]
  }
};

// eslint.config.js
import baseConfig from './config/base.js';

export default [
  baseConfig,
  {
    files: ["src/**/*.js"],
    rules: {
      "no-console": "warn"
    }
  }
];

Best Practices

  1. Start with recommended config - Use eslint:recommended as baseline
  2. Enable auto-fix - Configure editor to fix on save for productivity
  3. Use strict mode gradually - Start with warnings, upgrade to errors iteratively
  4. Document exceptions - Add comments when disabling rules
  5. Keep config organized - Split large configs into multiple files
  6. Test rule changes - Run linter on entire codebase before committing config changes
  7. Update regularly - Keep ESLint and plugins up to date for latest rules and fixes
  8. Use flat config - Migrate to eslint.config.js format (v9+ standard)

Workflow for Fixing Errors

When ESLint reports errors:

  1. Identify the rule - Look for rule name in error message (e.g., no-unused-vars)
  2. Read rule docs - Check references/rules/[rule-name].md
  3. Review examples - Examine correct/incorrect examples in the docs
  4. Apply fix - Either fix code or configure rule if not applicable
  5. Verify - Re-run ESLint to confirm error is resolved

Updating Documentation

To update this skill's documentation when new ESLint versions are released:

See scripts/docs-updater/USAGE.md for complete instructions on extracting updated documentation from the ESLint repository.

Key Differences Between Versions

ESLint 9.x (Flat Config)

  • New flat config format (eslint.config.js)
  • Simplified configuration structure
  • Better TypeScript support
  • Improved performance

ESLint 8.x (Legacy)

  • Uses.eslintrc.* files (deprecated in v9+)
  • Different plugin loading mechanism
  • Legacy config format

Migration: See references/use/configure/migration-guide.md for migrating from v8 to v9.

Working with This Skill

This skill provides:

  1. Comprehensive rule reference - All 300+ ESLint rules with examples
  2. Configuration patterns - Flat config examples and best practices
  3. Integration guides - Editor, build system, and CI/CD integration
  4. Troubleshooting - Common errors and solutions
  5. Migration guides - Version upgrade assistance
  6. Extension patterns - Custom rules, plugins, and parsers

For specific rule details, configuration options, or integration patterns, consult the organized reference documentation in references/.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.92%
按下载量换算29

Claude

28.8%
按下载量换算22

Cursor

19.46%
按下载量换算15

Gemini CLI

10.45%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/ghosttypes/ff-5mp-api-ts --skill eslint 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills