chore: восстановление репозитория из снапшота v0.3.1

Прежняя git-история утрачена при переносе проекта на машину владельца
(снапшот без .git). Хэши коммитов в docs/reports/* относятся к утраченной
истории.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
sab.code.lab 2026-08-07 09:34:02 +02:00
commit 1c85091186
184 changed files with 33303 additions and 0 deletions

31
eslint.config.js Normal file
View file

@ -0,0 +1,31 @@
import js from '@eslint/js';
import tseslint from '@typescript-eslint/eslint-plugin';
import tsparser from '@typescript-eslint/parser';
import prettier from 'eslint-config-prettier';
export default [
{
ignores: ['node_modules/', 'dist/', 'coverage/', '**/dist/', '**/.astro/'],
},
js.configs.recommended,
{
files: ['**/*.ts'],
languageOptions: {
parser: tsparser,
parserOptions: { sourceType: 'module', ecmaVersion: 2022 },
},
plugins: { '@typescript-eslint': tseslint },
rules: {
...tseslint.configs.recommended.rules,
// typescript-eslint: no-undef для TS отключаем — типы проверяет tsc,
// иначе ложные срабатывания на DOM-глобалах (lib "DOM" видит только tsc)
'no-undef': 'off',
// strict-профиль: any запрещён спекой проекта
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/explicit-function-return-type': 'warn',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'no-console': ['warn', { allow: ['warn', 'error'] }],
},
},
prettier,
];