agentsclimarketplace

Eslint

Skill a5c-ai/babysitter/library/specializations/web-development/skills/eslint

ESLint configuration, custom rules, and plugin development.From its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill eslint

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

1.1 KB, 174 tokens by cl100k_base, as published. Nobody here has run it

ESLint Skill

Expert assistance for ESLint configuration.

Capabilities

  • Configure ESLint
  • Set up plugins
  • Create custom rules
  • Handle TypeScript
  • Configure for React/Vue

Configuration

// eslint.config.js (flat config)
import js from '@eslint/js';
import typescript from '@typescript-eslint/eslint-plugin';
import react from 'eslint-plugin-react';

export default [
  js.configs.recommended,
  {
    plugins: { '@typescript-eslint': typescript, react },
    rules: {
      '@typescript-eslint/no-unused-vars': 'error',
      'react/jsx-uses-react': 'off',
      'react/react-in-jsx-scope': 'off',
    },
  },
];

Target Processes

  • code-quality
  • linting-setup
  • team-standards

What ships with it: 1 file

281 B alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.