6ff05fd7ea
Установлены 9 инструментов фазы 0 + lefthook для pre-commit/pre-push hooks. Конфиги в корне: - package.json + package-lock.json (10 dev-deps, 7 npm-скриптов) - .markdownlint.json + .markdownlintignore — стиль Markdown - cspell.json + cspell-words.txt — орфография ru/en + 350+ проектных терминов - .lychee.toml — проверка ссылок с игнором плейсхолдеров - .stylelintrc.json — стиль CSS в HTML-прототипах - .gitleaks.toml — 8 кастомных правил для РФ-контекста (телефон, ИНН, ОГРН, паспорт, Yandex Cloud-tokens, webhook secrets) + allowlist для масок - pa11y.config.json — WCAG 2.1 AA для web/01-login.html и web/02-dashboard.html - .mcp.json — 3 MCP-сервера (Playwright, GitHub через офиц. hosted endpoint, PostgreSQL — заглушка) - .gitignore — node_modules, bin/*, артефакты + задел на фазы 1–3 - .claude/settings.json — permissions allow/deny + хук авто-fix .md - lefthook.yml — pre-commit (gitleaks + markdownlint + cspell + stylelint) и pre-push (полный gitleaks по истории) Связано: docs/Tooling_v8_3.md (Прил. Н v1.0) — реестр 28 инструментов в 4 фазах; CLAUDE.md в корне — оперативная карта приоритета правил и команд. Архитектурных изменений в проекте: 0. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
39 lines
827 B
JSON
39 lines
827 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
|
|
"version": "0.2",
|
|
"language": "en,ru,ru-ru",
|
|
"import": [
|
|
"@cspell/dict-ru_ru/cspell-ext.json",
|
|
"@cspell/dict-en_us/cspell-ext.json"
|
|
],
|
|
"dictionaryDefinitions": [
|
|
{
|
|
"name": "lidpotok-glossary",
|
|
"path": "./cspell-words.txt",
|
|
"addWords": true
|
|
}
|
|
],
|
|
"dictionaries": [
|
|
"lidpotok-glossary"
|
|
],
|
|
"ignorePaths": [
|
|
"node_modules/**",
|
|
".git/**",
|
|
"bin/**",
|
|
"package-lock.json",
|
|
"*.svg",
|
|
"**/*.sql"
|
|
],
|
|
"ignoreRegExpList": [
|
|
"Email",
|
|
"Url",
|
|
"/[A-F0-9]{6,}/g",
|
|
"/`[^`]+`/g",
|
|
"/```[\\s\\S]*?```/g",
|
|
"/<(?:style|script)[\\s\\S]*?<\\/(?:style|script)>/g"
|
|
],
|
|
"allowCompoundWords": true,
|
|
"minWordLength": 3,
|
|
"useGitignore": true
|
|
}
|