Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
examples/llm-as-judge-skills/eslint.config.js
1import eslint from '@eslint/js';2import tseslint from 'typescript-eslint';34export default tseslint.config(5eslint.configs.recommended,6...tseslint.configs.recommended,7{8ignores: ['dist/', 'node_modules/', 'coverage/']9},10{11rules: {12'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],13'@typescript-eslint/explicit-function-return-type': 'off',14'@typescript-eslint/no-explicit-any': 'warn'15}16}17);1819