spb/khaelor Public
KHAELOR — a terminal-native autonomous engineering agent powered by Anthropic.
TypeScript 82.9%
HTML 14.9%
CSS 1.1%
JavaScript 0.7%
1/**2 * KHAELOR3 * File: eslint.config.mjs4 * Description: ESLint flat configuration — strict TypeScript rules (headers enforced by scripts/check-headers.sh).5 *6 * Author: Simon-Pierre Boucher7 * Contact: contact@spboucher.ai8 */910import tseslint from 'typescript-eslint';1112export default tseslint.config(13 ...tseslint.configs.recommended,14 {15 files: ['src/**/*.ts', 'src/**/*.tsx'],16 rules: {17 '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],18 '@typescript-eslint/consistent-type-imports': 'error',19 'no-console': 'error',20 },21 },22 {23 ignores: ['dist/', 'node_modules/', 'references/'],24 },25);26