Eslint
Skill a5c-ai/babysitter/library/specializations/web-development/skills/eslint
ESLint configuration, custom rules, and plugin development.From its SKILL.md
npx -y skills add a5c-ai/babysitter --skill eslintAssembled 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
- README.md281 B