Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Standardized guidelines and patterns for Frontend Quality Linting.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -49% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -30% | 0% |
| case-16 | ✗→✓ | ▲ Improved | -25% | 0% |
| case-10 | ✓→✗ | ▼ Worse | -11% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 30% | 0% |
bashnpm install -D eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin npm install -D eslint-plugin-react eslint-plugin-react-hooks
javascript// .eslintrc.js module.exports = { parser: '@typescript-eslint/parser', plugins: ['@typescript-eslint', 'react', 'react-hooks'], extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react/recommended', 'plugin:react-hooks/recommended' ], rules: { 'react-hooks/rules-of-hooks': 'error', 'react-hooks/exhaustive-deps': 'warn' } };
Other measured skills in the registry, with their headline benchmark lift.