Eslint
Skill a5c-ai/babysitter/library/specializations/web-development/skills/eslint
Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration
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.
What its author says it does
Copied from the file, not written here
ESLint configuration, custom rules, and plugin development.
SKILL.md
1.1 KB, 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