code-standards 7.0.2__tar.gz → 7.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {code_standards-7.0.2 → code_standards-7.0.4}/PKG-INFO +1 -1
- {code_standards-7.0.2 → code_standards-7.0.4}/pyproject.toml +1 -1
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/cli-reference.v1.json +1 -1
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/linting/external.py +15 -3
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/__init__.py +2 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/changes.py +13 -9
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/registry.py +24 -20
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/tags.py +62 -13
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/docs.py +43 -6
- {code_standards-7.0.2 → code_standards-7.0.4}/.gitignore +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/LICENSE +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/README.md +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/__main__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/_meta.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/api.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/cli/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/cli/main.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/doctor.config.json +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/eslint.application.mjs +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/eslint.peers.json +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/eslint.strict.mjs +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/markdownlint.strict.yaml +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/pyright.strict.json +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/ruff.application.toml +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/ruff.strict.toml +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/rule-inventory.v1.json +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/rule-ledger.json +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/rule-warning-levels.v1.json +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/taplo.strict.toml +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/yamllint.strict.yaml +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/configs.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/doctor.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/exclusions.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/hooks.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/launcher.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/lifecycle.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/manifest.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/packagemanager.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/retired_suppressions.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/scaffold.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/service.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/transaction.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/upgrade.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/uvtool.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/catalogs/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/catalogs/slack_automations.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/corpus/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/corpus/manifest.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/corpus/snapshot.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/diagnostics/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/diagnostics/analysis.schema.json +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/diagnostics/baseline.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/diagnostics/models.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/diagnostics/serialize.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/diagnostics/source.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/filesystem.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/linting/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/linting/analysis.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/linting/library_policy.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/linting/policy.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/linting/runner.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/linting/textlint.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/_values.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/artifacts.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/causality.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/process.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/publish.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/release_age.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/rollout.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/typescript.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/cli_reference_artifact.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/comment_corpus.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/config_generation.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/hooks.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/ledger.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/repository.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/rule_authoring.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/rule_catalog_artifact.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/rule_changes.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/rule_inventory_artifact.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/rule_lifecycle.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/rule_maintenance.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/rules/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/rules/catalog.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/rules/contracts.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/rules/corpus_runner.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/rules/evaluation.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/setup/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/setup/repository.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/py.typed +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/schemas/__init__.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/schemas/_paths.py +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/schemas/rule-catalog.v1.json +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/schemas/rule-catalog.v1.schema.json +0 -0
- {code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/schemas/slack-automations.v1.schema.json +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: code-standards
|
|
3
|
-
Version: 7.0.
|
|
3
|
+
Version: 7.0.4
|
|
4
4
|
Summary: One deterministic quality gate for Sarj Python, TypeScript, SQL, IaC, and repository policy.
|
|
5
5
|
Project-URL: Homepage, https://code-standards.sarj.ai/
|
|
6
6
|
Project-URL: Documentation, https://code-standards.sarj.ai/cli/
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/cli-reference.v1.json
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"commands":[{"commands":[],"name":"doctor","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["text","json"],"kind":"option","metavar":"OUTPUT_FORMAT","names":["--format"],"repeatable":false,"required":false,"summary":"output format (default: text)"},{"choices":[],"kind":"option","metavar":null,"names":["--repair"],"repeatable":false,"required":false,"summary":"transactionally repair safe drift with the executing bundle, then re-diagnose"},{"choices":[],"kind":"option","metavar":null,"names":["--no-install"],"repeatable":false,"required":false,"summary":"with --repair, update configuration without installing dependencies or hooks"}],"path":["doctor"],"summary":"diagnose adoption health and optionally repair safe drift","usage":"code-standards doctor [-h] [--format OUTPUT_FORMAT] [--repair] [--no-install]"},{"commands":[],"name":"setup","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["pre-commit","lefthook","none"],"kind":"option","metavar":"HOOKS","names":["--hooks"],"repeatable":false,"required":false,"summary":"hook manager (default: detect Lefthook, otherwise pre-commit)"},{"choices":[],"kind":"option","metavar":"PYTHON_DEST","names":["--python-dest"],"repeatable":false,"required":false,"summary":"the directory that owns pyproject.toml (default: detected)"},{"choices":[],"kind":"option","metavar":"TYPESCRIPT_DEST","names":["--typescript-dest"],"repeatable":false,"required":false,"summary":"the directory that owns the npm lockfile (default: detected)"},{"choices":[],"kind":"option","metavar":null,"names":["--dry-run"],"repeatable":false,"required":false,"summary":"print the complete plan without writing"},{"choices":[],"kind":"option","metavar":null,"names":["--force"],"repeatable":false,"required":false,"summary":"replace conflicting generated lint configuration after review"},{"choices":["standard","application"],"kind":"option","metavar":"PROFILE","names":["--profile"],"repeatable":false,"required":false,"summary":"policy profile to adopt (default: existing value, otherwise standard)"},{"choices":[],"kind":"option","metavar":null,"names":["--no-install"],"repeatable":false,"required":false,"summary":"write wiring without installing dependencies or hooks"},{"choices":["eslint","markdownlint","pyright","ruff","taplo","yamllint"],"kind":"option","metavar":"ONLY","names":["--config"],"repeatable":true,"required":false,"summary":"select one config explicitly (repeatable)"}],"path":["setup"],"summary":"adopt or converge the repository in one idempotent operation","usage":"code-standards setup [-h] [--hooks HOOKS] [--python-dest PYTHON_DEST] [--typescript-dest TYPESCRIPT_DEST] [--dry-run] [--force] [--profile PROFILE] [--no-install] [--config ONLY ...]"},{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--trust-repository-code"],"repeatable":false,"required":false,"summary":"allow executable repository ESLint configuration (generated hooks and CI set this explicitly)"},{"choices":[],"kind":"option","metavar":null,"names":["--staged"],"repeatable":false,"required":false,"summary":"run custom rules on hook-supplied paths, or discover staged files when none are supplied"},{"choices":["text","json","sarif","github"],"kind":"option","metavar":"OUTPUT_FORMAT","names":["--format"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":"write JSON or SARIF atomically to PATH"},{"choices":["0","1","2","3","4","5","6","7","8","9","10"],"kind":"option","metavar":"MAX_ANNOTATIONS_PER_LEVEL","names":["--max-annotations-per-level"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":"selected paths; when omitted, check the complete repository"}],"path":["check"],"summary":"run the complete quality gate or check selected paths","usage":"code-standards check [-h] [--trust-repository-code] [--staged] [--format OUTPUT_FORMAT] [--output OUTPUT] [--max-annotations-per-level MAX_ANNOTATIONS_PER_LEVEL] [files ...]"},{"commands":[],"name":"validate-slack-automations","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"PATH","names":["slack_catalog"],"repeatable":false,"required":true,"summary":""}],"path":["validate-slack-automations"],"summary":"validate a versioned Slack automation catalog","usage":"code-standards validate-slack-automations [-h] PATH"},{"commands":[],"name":"observe","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"SELECTED_RULES","names":["--rule"],"repeatable":true,"required":true,"summary":"canonical ENGINE:ID selector (repeatable)"},{"choices":["text","json","sarif","github"],"kind":"option","metavar":"OUTPUT_FORMAT","names":["--format"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":null,"names":["--trust-repository-code"],"repeatable":false,"required":false,"summary":"allow repository ESLint configuration to execute"},{"choices":[],"kind":"option","metavar":"MAX_ANNOTATIONS_PER_LEVEL","names":["--max-annotations-per-level"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":"selected paths; defaults to adopted verification paths"}],"path":["observe"],"summary":"report warning-stage findings with exit 0; invalid input or execution still exits 2","usage":"code-standards observe [-h] --rule SELECTED_RULES ... [--format OUTPUT_FORMAT] [--output OUTPUT] [--trust-repository-code] [--max-annotations-per-level MAX_ANNOTATIONS_PER_LEVEL] [files ...]"},{"commands":[],"name":"fix","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--staged"],"repeatable":false,"required":false,"summary":"fix only files staged in Git"},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":"selected paths; when omitted, fix the complete repository"}],"path":["fix"],"summary":"apply safe formatting and lint fixes","usage":"code-standards fix [-h] [--staged] [files ...]"},{"commands":[],"name":"update","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--check"],"repeatable":false,"required":false,"summary":"preview without writing; exit 1 when changes exist"},{"choices":[],"kind":"option","metavar":null,"names":["--offline"],"repeatable":false,"required":false,"summary":"reconverge the executing bundle and skip every network-dependent install; does not resolve latest"},{"choices":[],"kind":"option","metavar":"VERSION","names":["--to"],"repeatable":false,"required":false,"summary":"resolve and apply exactly this immutable coherent bundle version"},{"choices":[],"kind":"option","metavar":null,"names":["--no-install"],"repeatable":false,"required":false,"summary":"do not install dependencies or hooks"}],"path":["update"],"summary":"upgrade to the latest published coherent Standards bundle","usage":"code-standards update [-h] [--check] [--offline] [--to VERSION] [--no-install]"},{"commands":[{"commands":[],"name":"init","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":"baseline JSON (default: diagnostic-baseline.json)"},{"choices":[],"kind":"option","metavar":null,"names":["--trust-repository-code"],"repeatable":false,"required":false,"summary":"run repository-local analyzers that execute project code"},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":"paths to analyze (default: the whole repository)"}],"path":["baseline","init"],"summary":"record the first diagnostic baseline","usage":"code-standards baseline init [-h] [--output OUTPUT] [--trust-repository-code] [files ...]"},{"commands":[],"name":"update","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":"baseline JSON (default: diagnostic-baseline.json)"},{"choices":[],"kind":"option","metavar":null,"names":["--trust-repository-code"],"repeatable":false,"required":false,"summary":"run repository-local analyzers that execute project code"},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":"paths to analyze (default: the whole repository)"}],"path":["baseline","update"],"summary":"re-record the diagnostic baseline after reviewed cleanup","usage":"code-standards baseline update [-h] [--output OUTPUT] [--trust-repository-code] [files ...]"}],"name":"baseline","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["baseline"],"summary":"grandfather today's findings so only new ones fail","usage":"code-standards baseline [-h] {init,update}"},{"commands":[{"commands":[],"name":"init","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BASELINE","names":["--baseline"],"repeatable":false,"required":false,"summary":"budget JSON (default: suppression-baseline.json)"},{"choices":[],"kind":"option","metavar":"PACKAGE","names":["--package"],"repeatable":true,"required":false,"summary":"Python package root (repeatable)"},{"choices":[],"kind":"option","metavar":"EXCLUDE_SUBTREE","names":["--exclude-subtree"],"repeatable":true,"required":false,"summary":"generated or vendored subtree to persistently exclude (repeatable)"}],"path":["ratchet","init"],"summary":"create the first suppression budget","usage":"code-standards ratchet init [-h] [--baseline BASELINE] [--package PACKAGE ...] [--exclude-subtree EXCLUDE_SUBTREE ...]"},{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BASELINE","names":["--baseline"],"repeatable":false,"required":false,"summary":"budget JSON (default: suppression-baseline.json)"},{"choices":[],"kind":"option","metavar":"PACKAGE","names":["--package"],"repeatable":true,"required":false,"summary":"Python package root (repeatable)"},{"choices":[],"kind":"option","metavar":"EXCLUDE_SUBTREE","names":["--exclude-subtree"],"repeatable":true,"required":false,"summary":"generated or vendored subtree to persistently exclude (repeatable)"}],"path":["ratchet","check"],"summary":"fail when suppression debt grows","usage":"code-standards ratchet check [-h] [--baseline BASELINE] [--package PACKAGE ...] [--exclude-subtree EXCLUDE_SUBTREE ...]"},{"commands":[],"name":"status","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BASELINE","names":["--baseline"],"repeatable":false,"required":false,"summary":"budget JSON (default: suppression-baseline.json)"},{"choices":[],"kind":"option","metavar":"PACKAGE","names":["--package"],"repeatable":true,"required":false,"summary":"Python package root (repeatable)"},{"choices":[],"kind":"option","metavar":"EXCLUDE_SUBTREE","names":["--exclude-subtree"],"repeatable":true,"required":false,"summary":"generated or vendored subtree to persistently exclude (repeatable)"}],"path":["ratchet","status"],"summary":"show current suppression debt and available reductions","usage":"code-standards ratchet status [-h] [--baseline BASELINE] [--package PACKAGE ...] [--exclude-subtree EXCLUDE_SUBTREE ...]"},{"commands":[],"name":"update","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BASELINE","names":["--baseline"],"repeatable":false,"required":false,"summary":"budget JSON (default: suppression-baseline.json)"},{"choices":[],"kind":"option","metavar":"PACKAGE","names":["--package"],"repeatable":true,"required":false,"summary":"Python package root (repeatable)"},{"choices":[],"kind":"option","metavar":"EXCLUDE_SUBTREE","names":["--exclude-subtree"],"repeatable":true,"required":false,"summary":"generated or vendored subtree to persistently exclude (repeatable)"},{"choices":[],"kind":"option","metavar":null,"names":["--allow-increase"],"repeatable":false,"required":false,"summary":"permit a reviewed increase in suppression debt"}],"path":["ratchet","update"],"summary":"lock in reviewed suppression-budget changes","usage":"code-standards ratchet update [-h] [--baseline BASELINE] [--package PACKAGE ...] [--exclude-subtree EXCLUDE_SUBTREE ...] [--allow-increase]"}],"name":"ratchet","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["ratchet"],"summary":"keep the Python suppression budget from growing","usage":"code-standards ratchet [-h] {init,check,status,update}"},{"commands":[{"commands":[],"name":"list","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["exclude","list"],"summary":"list the complete denylist","usage":"code-standards exclude list [-h]"},{"commands":[],"name":"add","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["path","rule"],"kind":"positional","metavar":"{path,rule}","names":["exclude_kind"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"positional","metavar":"value","names":["value"],"repeatable":false,"required":true,"summary":"repository-relative glob or canonical engine:rule selector"}],"path":["exclude","add"],"summary":"add one exact denylist entry","usage":"code-standards exclude add [-h] {path,rule} value"},{"commands":[],"name":"remove","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["path","rule"],"kind":"positional","metavar":"{path,rule}","names":["exclude_kind"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"positional","metavar":"value","names":["value"],"repeatable":false,"required":true,"summary":"repository-relative glob or canonical engine:rule selector"}],"path":["exclude","remove"],"summary":"remove one exact denylist entry","usage":"code-standards exclude remove [-h] {path,rule} value"}],"name":"exclude","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["exclude"],"summary":"inspect or change explicit path and rule exclusions","usage":"code-standards exclude [-h] {list,add,remove}"},{"commands":[{"commands":[],"name":"state","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["show","state"],"summary":"print detected adoption state as JSON","usage":"code-standards show state [-h]"},{"commands":[],"name":"configs","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["show","configs"],"summary":"list bundled configurations","usage":"code-standards show configs [-h]"},{"commands":[],"name":"config","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["eslint","markdownlint","pyright","ruff","taplo","yamllint"],"kind":"positional","metavar":"name","names":["name"],"repeatable":false,"required":true,"summary":""},{"choices":["standard","application"],"kind":"option","metavar":"PROFILE","names":["--profile"],"repeatable":false,"required":false,"summary":""}],"path":["show","config"],"summary":"print one bundled configuration path","usage":"code-standards show config [-h] name [--profile PROFILE]"},{"commands":[],"name":"peers","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["show","peers"],"summary":"show tested ESLint peer dependencies and install command","usage":"code-standards show peers [-h]"},{"commands":[],"name":"rules","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["show","rules"],"summary":"print the machine-readable custom-rule inventory","usage":"code-standards show rules [-h]"},{"commands":[],"name":"ci","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":"write a managed workflow inside the repository"}],"path":["show","ci"],"summary":"print a complete pinned GitHub Actions standards workflow","usage":"code-standards show ci [-h] [--output OUTPUT]"}],"name":"show","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["show"],"summary":"print read-only package and adoption information","usage":"code-standards show [-h] {state,configs,config,peers,rules,ci}"},{"commands":[{"commands":[],"name":"setup","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--check"],"repeatable":false,"required":false,"summary":"print the deterministic setup plan without executing it"}],"path":["maintain","setup"],"summary":"install every standards development environment and repository hook","usage":"code-standards maintain setup [-h] [--check]"},{"commands":[{"commands":[],"name":"check-tag","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"tag","names":["tag"],"repeatable":false,"required":true,"summary":""}],"path":["maintain","release","check-tag"],"summary":"require a release tag to match its package manifest","usage":"code-standards maintain release check-tag [-h] tag"},{"commands":[],"name":"verify-tags","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"RELEASE_COMMIT","names":["--commit"],"repeatable":false,"required":false,"summary":"also require existing tags to match this publishing commit or an unchanged package tree"}],"path":["maintain","release","verify-tags"],"summary":"verify all manifest release tags on origin","usage":"code-standards maintain release verify-tags [-h] [--commit RELEASE_COMMIT]"},{"commands":[],"name":"create-tags","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["typescript","bootstrap","python","sql","iac","standards","tsconfig","docs-ui"],"kind":"positional","metavar":"release_targets","names":["release_targets"],"repeatable":true,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"RELEASE_COMMIT","names":["--commit"],"repeatable":false,"required":true,"summary":"exact commit that was published"},{"choices":[],"kind":"option","metavar":"ATTEMPTS","names":["--attempts"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"DELAY_SECONDS","names":["--delay-seconds"],"repeatable":false,"required":false,"summary":""}],"path":["maintain","release","create-tags"],"summary":"create and push manifest release tags","usage":"code-standards maintain release create-tags [-h] release_targets ... --commit RELEASE_COMMIT [--attempts ATTEMPTS] [--delay-seconds DELAY_SECONDS]"},{"commands":[],"name":"changes","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BEFORE","names":["--before"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"AFTER","names":["--after"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"GITHUB_OUTPUT","names":["--github-output"],"repeatable":false,"required":true,"summary":""}],"path":["maintain","release","changes"],"summary":"emit package version changes between Git revisions","usage":"code-standards maintain release changes [-h] --before BEFORE --after AFTER --github-output GITHUB_OUTPUT"},{"commands":[],"name":"causality","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BEFORE","names":["--before"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"AFTER","names":["--after"],"repeatable":false,"required":true,"summary":""}],"path":["maintain","release","causality"],"summary":"require every publishable package change to bump its version","usage":"code-standards maintain release causality [-h] --before BEFORE --after AFTER"},{"commands":[],"name":"lock-age","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"lockfile","names":["lockfile"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"MINIMUM_AGE","names":["--minimum-days"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"RELEASE_EXCLUDE","names":["--exclude"],"repeatable":true,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"RELEASE_EXCLUDE_FILE","names":["--exclude-file"],"repeatable":true,"required":false,"summary":"line-oriented exact package@version exceptions (repeatable)"}],"path":["maintain","release","lock-age"],"summary":"enforce npm lockfile minimum release age","usage":"code-standards maintain release lock-age [-h] lockfile [--minimum-days MINIMUM_AGE] [--exclude RELEASE_EXCLUDE ...] [--exclude-file RELEASE_EXCLUDE_FILE ...]"},{"commands":[],"name":"typescript","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["check","pack","publish"],"kind":"positional","metavar":"release_mode","names":["release_mode"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":"artifact directory (required for pack)"}],"path":["maintain","release","typescript"],"summary":"check, pack, or publish the TypeScript package","usage":"code-standards maintain release typescript [-h] release_mode [--output OUTPUT]"},{"commands":[],"name":"verify-wheel","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"wheels","names":["wheels"],"repeatable":true,"required":true,"summary":""}],"path":["maintain","release","verify-wheel"],"summary":"require non-empty license text in built Python wheels","usage":"code-standards maintain release verify-wheel [-h] wheels ..."},{"commands":[],"name":"verify-publications","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"ATTEMPTS","names":["--attempts"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"DELAY_SECONDS","names":["--delay-seconds"],"repeatable":false,"required":false,"summary":""}],"path":["maintain","release","verify-publications"],"summary":"wait for every exact sibling publication required by Standards","usage":"code-standards maintain release verify-publications [-h] [--attempts ATTEMPTS] [--delay-seconds DELAY_SECONDS]"},{"commands":[],"name":"publish","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["typescript","bootstrap","python","sql","iac","standards","tsconfig","docs-ui"],"kind":"positional","metavar":"release_target","names":["release_target"],"repeatable":false,"required":true,"summary":""}],"path":["maintain","release","publish"],"summary":"build and publish one package through its native client","usage":"code-standards maintain release publish [-h] release_target"}],"name":"release","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","release"],"summary":"validate and build publishable release artifacts","usage":"code-standards maintain release [-h] {check-tag,verify-tags,create-tags,changes,causality,lock-age,typescript,verify-wheel,verify-publications,publish}"},{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["ci-history","file-conventions","private-refs","versions"],"kind":"option","metavar":"REPO_ONLY","names":["--only"],"repeatable":true,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"COMMITS","names":["--commits"],"repeatable":false,"required":false,"summary":"also inspect commit messages in this revision range"},{"choices":[],"kind":"option","metavar":"POLICY_DEST","names":["--policy-root"],"repeatable":false,"required":false,"summary":"trusted repository policy root (default: --root)"},{"choices":[],"kind":"option","metavar":"PRIVATE_REFS_FILE","names":["--private-refs-file"],"repeatable":false,"required":false,"summary":"private-reference TOML outside the scanned repository"},{"choices":[],"kind":"option","metavar":null,"names":["--quiet"],"repeatable":false,"required":false,"summary":"hide finding details"}],"path":["maintain","check"],"summary":"run repository policy gates","usage":"code-standards maintain check [-h] [--only REPO_ONLY ...] [--commits COMMITS] [--policy-root POLICY_DEST] [--private-refs-file PRIVATE_REFS_FILE] [--quiet]"},{"commands":[],"name":"sync-ledger","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--check"],"repeatable":false,"required":false,"summary":"report drift without writing"}],"path":["maintain","sync-ledger"],"summary":"synchronize the rule compatibility ledger","usage":"code-standards maintain sync-ledger [-h] [--check]"},{"commands":[{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","docs","check"],"summary":"","usage":"code-standards maintain docs check [-h]"},{"commands":[],"name":"sync","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","docs","sync"],"summary":"","usage":"code-standards maintain docs sync [-h]"}],"name":"docs","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","docs"],"summary":"check or synchronize source-derived documentation","usage":"code-standards maintain docs [-h] {check,sync}"},{"commands":[],"name":"comment-corpus","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"roots","names":["roots"],"repeatable":true,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"PRIVATE_JSONL","names":["--include-text"],"repeatable":false,"required":false,"summary":"write sensitive comment text to a new owner-readable file"}],"path":["maintain","comment-corpus"],"summary":"extract comments for calibration","usage":"code-standards maintain comment-corpus [-h] roots ... [--include-text PRIVATE_JSONL]"},{"commands":[{"commands":[],"name":"install","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","hooks","install"],"summary":"install Lefthook","usage":"code-standards maintain hooks install [-h]"}],"name":"hooks","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","hooks"],"summary":"manage the pinned repository hooks","usage":"code-standards maintain hooks [-h] {install}"},{"commands":[{"commands":[],"name":"manifest","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","rules","manifest"],"summary":"print the shipped rule inventory","usage":"code-standards maintain rules manifest [-h]"},{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","rules","check"],"summary":"verify the shipped rule inventory matches live registries","usage":"code-standards maintain rules check [-h]"},{"commands":[],"name":"sync","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","rules","sync"],"summary":"update the shipped rule inventory from live registries","usage":"code-standards maintain rules sync [-h]"},{"commands":[],"name":"new","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"selector","names":["selector"],"repeatable":false,"required":true,"summary":"canonical ENGINE:ID selector"},{"choices":["architecture","correctness","maintainability","performance","security","style","testing"],"kind":"option","metavar":"RULE_CATEGORY","names":["--category"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"RULE_SUMMARY","names":["--summary"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":null,"names":["--apply"],"repeatable":false,"required":false,"summary":"create the planned files"}],"path":["maintain","rules","new"],"summary":"plan or create author-owned rule and test skeletons","usage":"code-standards maintain rules new [-h] selector --category RULE_CATEGORY --summary RULE_SUMMARY [--apply]"},{"commands":[],"name":"stage-warning","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"selector","names":["selector"],"repeatable":false,"required":true,"summary":"canonical ENGINE:ID selector"},{"choices":[],"kind":"option","metavar":null,"names":["--check"],"repeatable":false,"required":false,"summary":"report required staging without writing"}],"path":["maintain","rules","stage-warning"],"summary":"prepare one registered rule for warning-first publication","usage":"code-standards maintain rules stage-warning [-h] selector [--check]"},{"commands":[],"name":"prepare","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"selector","names":["selector"],"repeatable":false,"required":true,"summary":"canonical ENGINE:ID selector"},{"choices":[],"kind":"option","metavar":null,"names":["--check"],"repeatable":false,"required":false,"summary":"report required preparation without writing"}],"path":["maintain","rules","prepare"],"summary":"validate and prepare one registered rule for warning-first publication","usage":"code-standards maintain rules prepare [-h] selector [--check]"},{"commands":[],"name":"verify","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"selector","names":["selector"],"repeatable":false,"required":true,"summary":"canonical ENGINE:ID selector"}],"path":["maintain","rules","verify"],"summary":"validate one registered rule's authored files and public examples","usage":"code-standards maintain rules verify [-h] selector"},{"commands":[],"name":"changes","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BEFORE","names":["--before"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"AFTER","names":["--after"],"repeatable":false,"required":true,"summary":""},{"choices":["json","text"],"kind":"option","metavar":"OUTPUT_FORMAT","names":["--format"],"repeatable":false,"required":false,"summary":""}],"path":["maintain","rules","changes"],"summary":"compare rule inventory and policy between two Git revisions","usage":"code-standards maintain rules changes [-h] --before BEFORE --after AFTER [--format OUTPUT_FORMAT]"},{"commands":[],"name":"evaluate","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"SELECTED_RULES","names":["--rule"],"repeatable":true,"required":true,"summary":"canonical ENGINE:ID selector (repeatable)"},{"choices":["corpus","effective"],"kind":"option","metavar":"EVALUATION_SCOPE","names":["--scope"],"repeatable":false,"required":false,"summary":"corpus ignores baselines/rule exclusions; effective applies adopted repository policy"},{"choices":["json","text"],"kind":"option","metavar":"OUTPUT_FORMAT","names":["--format"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":null,"names":["--trust-repository-code"],"repeatable":false,"required":false,"summary":"allow executable repository ESLint configuration"},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":""}],"path":["maintain","rules","evaluate"],"summary":"calibrate selected custom rules; findings exit 1 and invalid input or execution exits 2","usage":"code-standards maintain rules evaluate [-h] --rule SELECTED_RULES ... [--scope EVALUATION_SCOPE] [--format OUTPUT_FORMAT] [--output OUTPUT] [--trust-repository-code] [files ...]"}],"name":"rules","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","rules"],"summary":"inspect live custom rules","usage":"code-standards maintain rules [-h] {manifest,check,sync,new,stage-warning,prepare,verify,changes,evaluate}"},{"commands":[{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","catalog","check"],"summary":"verify the public catalog matches every live rule","usage":"code-standards maintain catalog check [-h]"},{"commands":[],"name":"sync","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","catalog","sync"],"summary":"update the public catalog from source-owned rule metadata","usage":"code-standards maintain catalog sync [-h]"}],"name":"catalog","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","catalog"],"summary":"maintain the source-derived public rule catalog","usage":"code-standards maintain catalog [-h] {check,sync}"},{"commands":[{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","cli-reference","check"],"summary":"verify the shipped reference matches the parser graph","usage":"code-standards maintain cli-reference check [-h]"},{"commands":[],"name":"sync","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","cli-reference","sync"],"summary":"update the shipped reference from the parser graph","usage":"code-standards maintain cli-reference sync [-h]"}],"name":"cli-reference","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","cli-reference"],"summary":"maintain the source-derived CLI reference","usage":"code-standards maintain cli-reference [-h] {check,sync}"}],"name":"maintain","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain"],"summary":"repository policy, hooks, rule ledgers, and releases","usage":"code-standards maintain [-h] {setup,release,check,sync-ledger,docs,comment-corpus,hooks,rules,catalog,cli-reference}"}],"epilog":"Start with `code-standards setup`, then use `code-standards check`.","globalOptions":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--version"],"repeatable":false,"required":false,"summary":"show program's version number and exit"},{"choices":[],"kind":"option","metavar":"DEST","names":["--root"],"repeatable":false,"required":false,"summary":"repository root shared by the selected command (default: current directory)"}],"launcher":{"install":"uv tool install --python 3.14 code-standards","runLatest":"uvx --no-config --isolated --python 3.14 --from code-standards code-standards"},"program":"code-standards","schemaVersion":1,"summary":"Adopt, check, fix, diagnose, and update sarj-ai standards (v7.0.2).","version":"7.0.2"}
|
|
1
|
+
{"commands":[{"commands":[],"name":"doctor","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["text","json"],"kind":"option","metavar":"OUTPUT_FORMAT","names":["--format"],"repeatable":false,"required":false,"summary":"output format (default: text)"},{"choices":[],"kind":"option","metavar":null,"names":["--repair"],"repeatable":false,"required":false,"summary":"transactionally repair safe drift with the executing bundle, then re-diagnose"},{"choices":[],"kind":"option","metavar":null,"names":["--no-install"],"repeatable":false,"required":false,"summary":"with --repair, update configuration without installing dependencies or hooks"}],"path":["doctor"],"summary":"diagnose adoption health and optionally repair safe drift","usage":"code-standards doctor [-h] [--format OUTPUT_FORMAT] [--repair] [--no-install]"},{"commands":[],"name":"setup","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["pre-commit","lefthook","none"],"kind":"option","metavar":"HOOKS","names":["--hooks"],"repeatable":false,"required":false,"summary":"hook manager (default: detect Lefthook, otherwise pre-commit)"},{"choices":[],"kind":"option","metavar":"PYTHON_DEST","names":["--python-dest"],"repeatable":false,"required":false,"summary":"the directory that owns pyproject.toml (default: detected)"},{"choices":[],"kind":"option","metavar":"TYPESCRIPT_DEST","names":["--typescript-dest"],"repeatable":false,"required":false,"summary":"the directory that owns the npm lockfile (default: detected)"},{"choices":[],"kind":"option","metavar":null,"names":["--dry-run"],"repeatable":false,"required":false,"summary":"print the complete plan without writing"},{"choices":[],"kind":"option","metavar":null,"names":["--force"],"repeatable":false,"required":false,"summary":"replace conflicting generated lint configuration after review"},{"choices":["standard","application"],"kind":"option","metavar":"PROFILE","names":["--profile"],"repeatable":false,"required":false,"summary":"policy profile to adopt (default: existing value, otherwise standard)"},{"choices":[],"kind":"option","metavar":null,"names":["--no-install"],"repeatable":false,"required":false,"summary":"write wiring without installing dependencies or hooks"},{"choices":["eslint","markdownlint","pyright","ruff","taplo","yamllint"],"kind":"option","metavar":"ONLY","names":["--config"],"repeatable":true,"required":false,"summary":"select one config explicitly (repeatable)"}],"path":["setup"],"summary":"adopt or converge the repository in one idempotent operation","usage":"code-standards setup [-h] [--hooks HOOKS] [--python-dest PYTHON_DEST] [--typescript-dest TYPESCRIPT_DEST] [--dry-run] [--force] [--profile PROFILE] [--no-install] [--config ONLY ...]"},{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--trust-repository-code"],"repeatable":false,"required":false,"summary":"allow executable repository ESLint configuration (generated hooks and CI set this explicitly)"},{"choices":[],"kind":"option","metavar":null,"names":["--staged"],"repeatable":false,"required":false,"summary":"run custom rules on hook-supplied paths, or discover staged files when none are supplied"},{"choices":["text","json","sarif","github"],"kind":"option","metavar":"OUTPUT_FORMAT","names":["--format"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":"write JSON or SARIF atomically to PATH"},{"choices":["0","1","2","3","4","5","6","7","8","9","10"],"kind":"option","metavar":"MAX_ANNOTATIONS_PER_LEVEL","names":["--max-annotations-per-level"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":"selected paths; when omitted, check the complete repository"}],"path":["check"],"summary":"run the complete quality gate or check selected paths","usage":"code-standards check [-h] [--trust-repository-code] [--staged] [--format OUTPUT_FORMAT] [--output OUTPUT] [--max-annotations-per-level MAX_ANNOTATIONS_PER_LEVEL] [files ...]"},{"commands":[],"name":"validate-slack-automations","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"PATH","names":["slack_catalog"],"repeatable":false,"required":true,"summary":""}],"path":["validate-slack-automations"],"summary":"validate a versioned Slack automation catalog","usage":"code-standards validate-slack-automations [-h] PATH"},{"commands":[],"name":"observe","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"SELECTED_RULES","names":["--rule"],"repeatable":true,"required":true,"summary":"canonical ENGINE:ID selector (repeatable)"},{"choices":["text","json","sarif","github"],"kind":"option","metavar":"OUTPUT_FORMAT","names":["--format"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":null,"names":["--trust-repository-code"],"repeatable":false,"required":false,"summary":"allow repository ESLint configuration to execute"},{"choices":[],"kind":"option","metavar":"MAX_ANNOTATIONS_PER_LEVEL","names":["--max-annotations-per-level"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":"selected paths; defaults to adopted verification paths"}],"path":["observe"],"summary":"report warning-stage findings with exit 0; invalid input or execution still exits 2","usage":"code-standards observe [-h] --rule SELECTED_RULES ... [--format OUTPUT_FORMAT] [--output OUTPUT] [--trust-repository-code] [--max-annotations-per-level MAX_ANNOTATIONS_PER_LEVEL] [files ...]"},{"commands":[],"name":"fix","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--staged"],"repeatable":false,"required":false,"summary":"fix only files staged in Git"},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":"selected paths; when omitted, fix the complete repository"}],"path":["fix"],"summary":"apply safe formatting and lint fixes","usage":"code-standards fix [-h] [--staged] [files ...]"},{"commands":[],"name":"update","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--check"],"repeatable":false,"required":false,"summary":"preview without writing; exit 1 when changes exist"},{"choices":[],"kind":"option","metavar":null,"names":["--offline"],"repeatable":false,"required":false,"summary":"reconverge the executing bundle and skip every network-dependent install; does not resolve latest"},{"choices":[],"kind":"option","metavar":"VERSION","names":["--to"],"repeatable":false,"required":false,"summary":"resolve and apply exactly this immutable coherent bundle version"},{"choices":[],"kind":"option","metavar":null,"names":["--no-install"],"repeatable":false,"required":false,"summary":"do not install dependencies or hooks"}],"path":["update"],"summary":"upgrade to the latest published coherent Standards bundle","usage":"code-standards update [-h] [--check] [--offline] [--to VERSION] [--no-install]"},{"commands":[{"commands":[],"name":"init","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":"baseline JSON (default: diagnostic-baseline.json)"},{"choices":[],"kind":"option","metavar":null,"names":["--trust-repository-code"],"repeatable":false,"required":false,"summary":"run repository-local analyzers that execute project code"},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":"paths to analyze (default: the whole repository)"}],"path":["baseline","init"],"summary":"record the first diagnostic baseline","usage":"code-standards baseline init [-h] [--output OUTPUT] [--trust-repository-code] [files ...]"},{"commands":[],"name":"update","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":"baseline JSON (default: diagnostic-baseline.json)"},{"choices":[],"kind":"option","metavar":null,"names":["--trust-repository-code"],"repeatable":false,"required":false,"summary":"run repository-local analyzers that execute project code"},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":"paths to analyze (default: the whole repository)"}],"path":["baseline","update"],"summary":"re-record the diagnostic baseline after reviewed cleanup","usage":"code-standards baseline update [-h] [--output OUTPUT] [--trust-repository-code] [files ...]"}],"name":"baseline","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["baseline"],"summary":"grandfather today's findings so only new ones fail","usage":"code-standards baseline [-h] {init,update}"},{"commands":[{"commands":[],"name":"init","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BASELINE","names":["--baseline"],"repeatable":false,"required":false,"summary":"budget JSON (default: suppression-baseline.json)"},{"choices":[],"kind":"option","metavar":"PACKAGE","names":["--package"],"repeatable":true,"required":false,"summary":"Python package root (repeatable)"},{"choices":[],"kind":"option","metavar":"EXCLUDE_SUBTREE","names":["--exclude-subtree"],"repeatable":true,"required":false,"summary":"generated or vendored subtree to persistently exclude (repeatable)"}],"path":["ratchet","init"],"summary":"create the first suppression budget","usage":"code-standards ratchet init [-h] [--baseline BASELINE] [--package PACKAGE ...] [--exclude-subtree EXCLUDE_SUBTREE ...]"},{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BASELINE","names":["--baseline"],"repeatable":false,"required":false,"summary":"budget JSON (default: suppression-baseline.json)"},{"choices":[],"kind":"option","metavar":"PACKAGE","names":["--package"],"repeatable":true,"required":false,"summary":"Python package root (repeatable)"},{"choices":[],"kind":"option","metavar":"EXCLUDE_SUBTREE","names":["--exclude-subtree"],"repeatable":true,"required":false,"summary":"generated or vendored subtree to persistently exclude (repeatable)"}],"path":["ratchet","check"],"summary":"fail when suppression debt grows","usage":"code-standards ratchet check [-h] [--baseline BASELINE] [--package PACKAGE ...] [--exclude-subtree EXCLUDE_SUBTREE ...]"},{"commands":[],"name":"status","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BASELINE","names":["--baseline"],"repeatable":false,"required":false,"summary":"budget JSON (default: suppression-baseline.json)"},{"choices":[],"kind":"option","metavar":"PACKAGE","names":["--package"],"repeatable":true,"required":false,"summary":"Python package root (repeatable)"},{"choices":[],"kind":"option","metavar":"EXCLUDE_SUBTREE","names":["--exclude-subtree"],"repeatable":true,"required":false,"summary":"generated or vendored subtree to persistently exclude (repeatable)"}],"path":["ratchet","status"],"summary":"show current suppression debt and available reductions","usage":"code-standards ratchet status [-h] [--baseline BASELINE] [--package PACKAGE ...] [--exclude-subtree EXCLUDE_SUBTREE ...]"},{"commands":[],"name":"update","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BASELINE","names":["--baseline"],"repeatable":false,"required":false,"summary":"budget JSON (default: suppression-baseline.json)"},{"choices":[],"kind":"option","metavar":"PACKAGE","names":["--package"],"repeatable":true,"required":false,"summary":"Python package root (repeatable)"},{"choices":[],"kind":"option","metavar":"EXCLUDE_SUBTREE","names":["--exclude-subtree"],"repeatable":true,"required":false,"summary":"generated or vendored subtree to persistently exclude (repeatable)"},{"choices":[],"kind":"option","metavar":null,"names":["--allow-increase"],"repeatable":false,"required":false,"summary":"permit a reviewed increase in suppression debt"}],"path":["ratchet","update"],"summary":"lock in reviewed suppression-budget changes","usage":"code-standards ratchet update [-h] [--baseline BASELINE] [--package PACKAGE ...] [--exclude-subtree EXCLUDE_SUBTREE ...] [--allow-increase]"}],"name":"ratchet","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["ratchet"],"summary":"keep the Python suppression budget from growing","usage":"code-standards ratchet [-h] {init,check,status,update}"},{"commands":[{"commands":[],"name":"list","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["exclude","list"],"summary":"list the complete denylist","usage":"code-standards exclude list [-h]"},{"commands":[],"name":"add","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["path","rule"],"kind":"positional","metavar":"{path,rule}","names":["exclude_kind"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"positional","metavar":"value","names":["value"],"repeatable":false,"required":true,"summary":"repository-relative glob or canonical engine:rule selector"}],"path":["exclude","add"],"summary":"add one exact denylist entry","usage":"code-standards exclude add [-h] {path,rule} value"},{"commands":[],"name":"remove","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["path","rule"],"kind":"positional","metavar":"{path,rule}","names":["exclude_kind"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"positional","metavar":"value","names":["value"],"repeatable":false,"required":true,"summary":"repository-relative glob or canonical engine:rule selector"}],"path":["exclude","remove"],"summary":"remove one exact denylist entry","usage":"code-standards exclude remove [-h] {path,rule} value"}],"name":"exclude","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["exclude"],"summary":"inspect or change explicit path and rule exclusions","usage":"code-standards exclude [-h] {list,add,remove}"},{"commands":[{"commands":[],"name":"state","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["show","state"],"summary":"print detected adoption state as JSON","usage":"code-standards show state [-h]"},{"commands":[],"name":"configs","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["show","configs"],"summary":"list bundled configurations","usage":"code-standards show configs [-h]"},{"commands":[],"name":"config","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["eslint","markdownlint","pyright","ruff","taplo","yamllint"],"kind":"positional","metavar":"name","names":["name"],"repeatable":false,"required":true,"summary":""},{"choices":["standard","application"],"kind":"option","metavar":"PROFILE","names":["--profile"],"repeatable":false,"required":false,"summary":""}],"path":["show","config"],"summary":"print one bundled configuration path","usage":"code-standards show config [-h] name [--profile PROFILE]"},{"commands":[],"name":"peers","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["show","peers"],"summary":"show tested ESLint peer dependencies and install command","usage":"code-standards show peers [-h]"},{"commands":[],"name":"rules","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["show","rules"],"summary":"print the machine-readable custom-rule inventory","usage":"code-standards show rules [-h]"},{"commands":[],"name":"ci","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":"write a managed workflow inside the repository"}],"path":["show","ci"],"summary":"print a complete pinned GitHub Actions standards workflow","usage":"code-standards show ci [-h] [--output OUTPUT]"}],"name":"show","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["show"],"summary":"print read-only package and adoption information","usage":"code-standards show [-h] {state,configs,config,peers,rules,ci}"},{"commands":[{"commands":[],"name":"setup","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--check"],"repeatable":false,"required":false,"summary":"print the deterministic setup plan without executing it"}],"path":["maintain","setup"],"summary":"install every standards development environment and repository hook","usage":"code-standards maintain setup [-h] [--check]"},{"commands":[{"commands":[],"name":"check-tag","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"tag","names":["tag"],"repeatable":false,"required":true,"summary":""}],"path":["maintain","release","check-tag"],"summary":"require a release tag to match its package manifest","usage":"code-standards maintain release check-tag [-h] tag"},{"commands":[],"name":"verify-tags","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"RELEASE_COMMIT","names":["--commit"],"repeatable":false,"required":false,"summary":"also require existing tags to match this publishing commit or an unchanged package tree"}],"path":["maintain","release","verify-tags"],"summary":"verify all manifest release tags on origin","usage":"code-standards maintain release verify-tags [-h] [--commit RELEASE_COMMIT]"},{"commands":[],"name":"create-tags","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["typescript","bootstrap","python","sql","iac","standards","tsconfig","docs-ui"],"kind":"positional","metavar":"release_targets","names":["release_targets"],"repeatable":true,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"RELEASE_COMMIT","names":["--commit"],"repeatable":false,"required":true,"summary":"exact commit that was published"},{"choices":[],"kind":"option","metavar":"ATTEMPTS","names":["--attempts"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"DELAY_SECONDS","names":["--delay-seconds"],"repeatable":false,"required":false,"summary":""}],"path":["maintain","release","create-tags"],"summary":"create and push manifest release tags","usage":"code-standards maintain release create-tags [-h] release_targets ... --commit RELEASE_COMMIT [--attempts ATTEMPTS] [--delay-seconds DELAY_SECONDS]"},{"commands":[],"name":"changes","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BEFORE","names":["--before"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"AFTER","names":["--after"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"GITHUB_OUTPUT","names":["--github-output"],"repeatable":false,"required":true,"summary":""}],"path":["maintain","release","changes"],"summary":"emit package version changes between Git revisions","usage":"code-standards maintain release changes [-h] --before BEFORE --after AFTER --github-output GITHUB_OUTPUT"},{"commands":[],"name":"causality","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BEFORE","names":["--before"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"AFTER","names":["--after"],"repeatable":false,"required":true,"summary":""}],"path":["maintain","release","causality"],"summary":"require every publishable package change to bump its version","usage":"code-standards maintain release causality [-h] --before BEFORE --after AFTER"},{"commands":[],"name":"lock-age","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"lockfile","names":["lockfile"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"MINIMUM_AGE","names":["--minimum-days"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"RELEASE_EXCLUDE","names":["--exclude"],"repeatable":true,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"RELEASE_EXCLUDE_FILE","names":["--exclude-file"],"repeatable":true,"required":false,"summary":"line-oriented exact package@version exceptions (repeatable)"}],"path":["maintain","release","lock-age"],"summary":"enforce npm lockfile minimum release age","usage":"code-standards maintain release lock-age [-h] lockfile [--minimum-days MINIMUM_AGE] [--exclude RELEASE_EXCLUDE ...] [--exclude-file RELEASE_EXCLUDE_FILE ...]"},{"commands":[],"name":"typescript","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["check","pack","publish"],"kind":"positional","metavar":"release_mode","names":["release_mode"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":"artifact directory (required for pack)"}],"path":["maintain","release","typescript"],"summary":"check, pack, or publish the TypeScript package","usage":"code-standards maintain release typescript [-h] release_mode [--output OUTPUT]"},{"commands":[],"name":"verify-wheel","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"wheels","names":["wheels"],"repeatable":true,"required":true,"summary":""}],"path":["maintain","release","verify-wheel"],"summary":"require non-empty license text in built Python wheels","usage":"code-standards maintain release verify-wheel [-h] wheels ..."},{"commands":[],"name":"verify-publications","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"ATTEMPTS","names":["--attempts"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"DELAY_SECONDS","names":["--delay-seconds"],"repeatable":false,"required":false,"summary":""}],"path":["maintain","release","verify-publications"],"summary":"wait for every exact sibling publication required by Standards","usage":"code-standards maintain release verify-publications [-h] [--attempts ATTEMPTS] [--delay-seconds DELAY_SECONDS]"},{"commands":[],"name":"publish","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["typescript","bootstrap","python","sql","iac","standards","tsconfig","docs-ui"],"kind":"positional","metavar":"release_target","names":["release_target"],"repeatable":false,"required":true,"summary":""}],"path":["maintain","release","publish"],"summary":"build and publish one package through its native client","usage":"code-standards maintain release publish [-h] release_target"}],"name":"release","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","release"],"summary":"validate and build publishable release artifacts","usage":"code-standards maintain release [-h] {check-tag,verify-tags,create-tags,changes,causality,lock-age,typescript,verify-wheel,verify-publications,publish}"},{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":["ci-history","file-conventions","private-refs","versions"],"kind":"option","metavar":"REPO_ONLY","names":["--only"],"repeatable":true,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"COMMITS","names":["--commits"],"repeatable":false,"required":false,"summary":"also inspect commit messages in this revision range"},{"choices":[],"kind":"option","metavar":"POLICY_DEST","names":["--policy-root"],"repeatable":false,"required":false,"summary":"trusted repository policy root (default: --root)"},{"choices":[],"kind":"option","metavar":"PRIVATE_REFS_FILE","names":["--private-refs-file"],"repeatable":false,"required":false,"summary":"private-reference TOML outside the scanned repository"},{"choices":[],"kind":"option","metavar":null,"names":["--quiet"],"repeatable":false,"required":false,"summary":"hide finding details"}],"path":["maintain","check"],"summary":"run repository policy gates","usage":"code-standards maintain check [-h] [--only REPO_ONLY ...] [--commits COMMITS] [--policy-root POLICY_DEST] [--private-refs-file PRIVATE_REFS_FILE] [--quiet]"},{"commands":[],"name":"sync-ledger","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--check"],"repeatable":false,"required":false,"summary":"report drift without writing"}],"path":["maintain","sync-ledger"],"summary":"synchronize the rule compatibility ledger","usage":"code-standards maintain sync-ledger [-h] [--check]"},{"commands":[{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","docs","check"],"summary":"","usage":"code-standards maintain docs check [-h]"},{"commands":[],"name":"sync","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","docs","sync"],"summary":"","usage":"code-standards maintain docs sync [-h]"}],"name":"docs","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","docs"],"summary":"check or synchronize source-derived documentation","usage":"code-standards maintain docs [-h] {check,sync}"},{"commands":[],"name":"comment-corpus","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"roots","names":["roots"],"repeatable":true,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"PRIVATE_JSONL","names":["--include-text"],"repeatable":false,"required":false,"summary":"write sensitive comment text to a new owner-readable file"}],"path":["maintain","comment-corpus"],"summary":"extract comments for calibration","usage":"code-standards maintain comment-corpus [-h] roots ... [--include-text PRIVATE_JSONL]"},{"commands":[{"commands":[],"name":"install","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","hooks","install"],"summary":"install Lefthook","usage":"code-standards maintain hooks install [-h]"}],"name":"hooks","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","hooks"],"summary":"manage the pinned repository hooks","usage":"code-standards maintain hooks [-h] {install}"},{"commands":[{"commands":[],"name":"manifest","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","rules","manifest"],"summary":"print the shipped rule inventory","usage":"code-standards maintain rules manifest [-h]"},{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","rules","check"],"summary":"verify the shipped rule inventory matches live registries","usage":"code-standards maintain rules check [-h]"},{"commands":[],"name":"sync","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","rules","sync"],"summary":"update the shipped rule inventory from live registries","usage":"code-standards maintain rules sync [-h]"},{"commands":[],"name":"new","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"selector","names":["selector"],"repeatable":false,"required":true,"summary":"canonical ENGINE:ID selector"},{"choices":["architecture","correctness","maintainability","performance","security","style","testing"],"kind":"option","metavar":"RULE_CATEGORY","names":["--category"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"RULE_SUMMARY","names":["--summary"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":null,"names":["--apply"],"repeatable":false,"required":false,"summary":"create the planned files"}],"path":["maintain","rules","new"],"summary":"plan or create author-owned rule and test skeletons","usage":"code-standards maintain rules new [-h] selector --category RULE_CATEGORY --summary RULE_SUMMARY [--apply]"},{"commands":[],"name":"stage-warning","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"selector","names":["selector"],"repeatable":false,"required":true,"summary":"canonical ENGINE:ID selector"},{"choices":[],"kind":"option","metavar":null,"names":["--check"],"repeatable":false,"required":false,"summary":"report required staging without writing"}],"path":["maintain","rules","stage-warning"],"summary":"prepare one registered rule for warning-first publication","usage":"code-standards maintain rules stage-warning [-h] selector [--check]"},{"commands":[],"name":"prepare","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"selector","names":["selector"],"repeatable":false,"required":true,"summary":"canonical ENGINE:ID selector"},{"choices":[],"kind":"option","metavar":null,"names":["--check"],"repeatable":false,"required":false,"summary":"report required preparation without writing"}],"path":["maintain","rules","prepare"],"summary":"validate and prepare one registered rule for warning-first publication","usage":"code-standards maintain rules prepare [-h] selector [--check]"},{"commands":[],"name":"verify","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"positional","metavar":"selector","names":["selector"],"repeatable":false,"required":true,"summary":"canonical ENGINE:ID selector"}],"path":["maintain","rules","verify"],"summary":"validate one registered rule's authored files and public examples","usage":"code-standards maintain rules verify [-h] selector"},{"commands":[],"name":"changes","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"BEFORE","names":["--before"],"repeatable":false,"required":true,"summary":""},{"choices":[],"kind":"option","metavar":"AFTER","names":["--after"],"repeatable":false,"required":true,"summary":""},{"choices":["json","text"],"kind":"option","metavar":"OUTPUT_FORMAT","names":["--format"],"repeatable":false,"required":false,"summary":""}],"path":["maintain","rules","changes"],"summary":"compare rule inventory and policy between two Git revisions","usage":"code-standards maintain rules changes [-h] --before BEFORE --after AFTER [--format OUTPUT_FORMAT]"},{"commands":[],"name":"evaluate","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":"SELECTED_RULES","names":["--rule"],"repeatable":true,"required":true,"summary":"canonical ENGINE:ID selector (repeatable)"},{"choices":["corpus","effective"],"kind":"option","metavar":"EVALUATION_SCOPE","names":["--scope"],"repeatable":false,"required":false,"summary":"corpus ignores baselines/rule exclusions; effective applies adopted repository policy"},{"choices":["json","text"],"kind":"option","metavar":"OUTPUT_FORMAT","names":["--format"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":"OUTPUT","names":["--output"],"repeatable":false,"required":false,"summary":""},{"choices":[],"kind":"option","metavar":null,"names":["--trust-repository-code"],"repeatable":false,"required":false,"summary":"allow executable repository ESLint configuration"},{"choices":[],"kind":"positional","metavar":"files","names":["files"],"repeatable":true,"required":false,"summary":""}],"path":["maintain","rules","evaluate"],"summary":"calibrate selected custom rules; findings exit 1 and invalid input or execution exits 2","usage":"code-standards maintain rules evaluate [-h] --rule SELECTED_RULES ... [--scope EVALUATION_SCOPE] [--format OUTPUT_FORMAT] [--output OUTPUT] [--trust-repository-code] [files ...]"}],"name":"rules","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","rules"],"summary":"inspect live custom rules","usage":"code-standards maintain rules [-h] {manifest,check,sync,new,stage-warning,prepare,verify,changes,evaluate}"},{"commands":[{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","catalog","check"],"summary":"verify the public catalog matches every live rule","usage":"code-standards maintain catalog check [-h]"},{"commands":[],"name":"sync","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","catalog","sync"],"summary":"update the public catalog from source-owned rule metadata","usage":"code-standards maintain catalog sync [-h]"}],"name":"catalog","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","catalog"],"summary":"maintain the source-derived public rule catalog","usage":"code-standards maintain catalog [-h] {check,sync}"},{"commands":[{"commands":[],"name":"check","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","cli-reference","check"],"summary":"verify the shipped reference matches the parser graph","usage":"code-standards maintain cli-reference check [-h]"},{"commands":[],"name":"sync","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","cli-reference","sync"],"summary":"update the shipped reference from the parser graph","usage":"code-standards maintain cli-reference sync [-h]"}],"name":"cli-reference","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain","cli-reference"],"summary":"maintain the source-derived CLI reference","usage":"code-standards maintain cli-reference [-h] {check,sync}"}],"name":"maintain","options":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"}],"path":["maintain"],"summary":"repository policy, hooks, rule ledgers, and releases","usage":"code-standards maintain [-h] {setup,release,check,sync-ledger,docs,comment-corpus,hooks,rules,catalog,cli-reference}"}],"epilog":"Start with `code-standards setup`, then use `code-standards check`.","globalOptions":[{"choices":[],"kind":"option","metavar":null,"names":["-h","--help"],"repeatable":false,"required":false,"summary":"show this help message and exit"},{"choices":[],"kind":"option","metavar":null,"names":["--version"],"repeatable":false,"required":false,"summary":"show program's version number and exit"},{"choices":[],"kind":"option","metavar":"DEST","names":["--root"],"repeatable":false,"required":false,"summary":"repository root shared by the selected command (default: current directory)"}],"launcher":{"install":"uv tool install --python 3.14 code-standards","runLatest":"uvx --no-config --isolated --python 3.14 --from code-standards code-standards"},"program":"code-standards","schemaVersion":1,"summary":"Adopt, check, fix, diagnose, and update sarj-ai standards (v7.0.4).","version":"7.0.4"}
|
|
@@ -14,7 +14,7 @@ import sys
|
|
|
14
14
|
import threading
|
|
15
15
|
import time
|
|
16
16
|
import tomllib
|
|
17
|
-
from typing import TYPE_CHECKING, ClassVar, Literal, NamedTuple, Protocol
|
|
17
|
+
from typing import TYPE_CHECKING, ClassVar, Final, Literal, NamedTuple, Protocol
|
|
18
18
|
|
|
19
19
|
from pathspec import PathSpec
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field
|
|
@@ -66,6 +66,7 @@ _MAX_ESLINT_PROJECTS = 32
|
|
|
66
66
|
_MAX_PYTHON_PROJECTS = 32
|
|
67
67
|
_ANALYSIS_DEADLINE = timedelta(seconds=300)
|
|
68
68
|
_REACT_DOCTOR_MAX_DURATION = timedelta(seconds=60)
|
|
69
|
+
_ESLINT_NODE_OPTIONS: Final = "--max-old-space-size=4096"
|
|
69
70
|
_REACT_RUNTIME_PACKAGES = frozenset(
|
|
70
71
|
{
|
|
71
72
|
"@astrojs/react",
|
|
@@ -211,6 +212,7 @@ def analyze_external(
|
|
|
211
212
|
react_doctor_staged: bool = False,
|
|
212
213
|
) -> tuple[ToolReport, ...]:
|
|
213
214
|
execute = run_process if runner is None else runner
|
|
215
|
+
execute_eslint = _run_eslint_process if runner is None else runner
|
|
214
216
|
try:
|
|
215
217
|
normalized_trust = TrustMode(trust)
|
|
216
218
|
root, _contained, routed = _prepare_inputs(files, root, policy=policy, grouped=grouped)
|
|
@@ -306,7 +308,7 @@ def analyze_external(
|
|
|
306
308
|
else _eslint_json_argv(command.argv),
|
|
307
309
|
cwd=command.cwd,
|
|
308
310
|
root=root,
|
|
309
|
-
runner=
|
|
311
|
+
runner=execute_eslint,
|
|
310
312
|
parser=parse_eslint,
|
|
311
313
|
invocation_id=command.cwd.relative_to(root).as_posix() or ".",
|
|
312
314
|
file_count=_argv_file_count(command.argv),
|
|
@@ -831,6 +833,16 @@ def _nearest_project(start: Path, root: Path, markers: Sequence[str]) -> Path:
|
|
|
831
833
|
|
|
832
834
|
|
|
833
835
|
def run_process(argv: Sequence[str], *, cwd: Path) -> ProcessOutput:
|
|
836
|
+
return _run_process(argv, cwd=cwd, environment=_analysis_environment())
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
def _run_eslint_process(argv: Sequence[str], *, cwd: Path) -> ProcessOutput:
|
|
840
|
+
environment = _analysis_environment()
|
|
841
|
+
environment["NODE_OPTIONS"] = _ESLINT_NODE_OPTIONS
|
|
842
|
+
return _run_process(argv, cwd=cwd, environment=environment)
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
def _run_process(argv: Sequence[str], *, cwd: Path, environment: dict[str, str]) -> ProcessOutput:
|
|
834
846
|
executable = _analyzer_executable(argv[0])
|
|
835
847
|
if executable is None:
|
|
836
848
|
msg = f"required analyzer executable is missing: {argv[0]}"
|
|
@@ -842,7 +854,7 @@ def run_process(argv: Sequence[str], *, cwd: Path) -> ProcessOutput:
|
|
|
842
854
|
stdout=subprocess.PIPE,
|
|
843
855
|
stderr=subprocess.PIPE,
|
|
844
856
|
start_new_session=os.name == "posix",
|
|
845
|
-
env=
|
|
857
|
+
env=environment,
|
|
846
858
|
)
|
|
847
859
|
stdout = process.stdout
|
|
848
860
|
stderr = process.stderr
|
|
@@ -33,6 +33,7 @@ from sarj_standards.libs.release.release_age import (
|
|
|
33
33
|
)
|
|
34
34
|
from sarj_standards.libs.release.tags import (
|
|
35
35
|
RELEASE_TARGETS,
|
|
36
|
+
ReleasePublication,
|
|
36
37
|
ReleaseTarget,
|
|
37
38
|
ReleaseTargetId,
|
|
38
39
|
TagSyncResult,
|
|
@@ -67,6 +68,7 @@ __all__ = (
|
|
|
67
68
|
"ReleaseAgeReport",
|
|
68
69
|
"ReleaseCausalityReport",
|
|
69
70
|
"ReleaseMode",
|
|
71
|
+
"ReleasePublication",
|
|
70
72
|
"ReleaseTarget",
|
|
71
73
|
"ReleaseTargetId",
|
|
72
74
|
"TagSyncResult",
|
|
@@ -4,8 +4,8 @@ import re
|
|
|
4
4
|
from typing import TYPE_CHECKING
|
|
5
5
|
|
|
6
6
|
from sarj_standards.libs.release.process import ProcessRunner, run_process
|
|
7
|
-
from sarj_standards.libs.release.registry import PublicationChecker, publication_exists,
|
|
8
|
-
from sarj_standards.libs.release.tags import RELEASE_TARGETS
|
|
7
|
+
from sarj_standards.libs.release.registry import PublicationChecker, publication_exists, target_requirements
|
|
8
|
+
from sarj_standards.libs.release.tags import RELEASE_TARGETS, release_manifests
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
if TYPE_CHECKING:
|
|
@@ -26,13 +26,17 @@ def changed_release_targets(
|
|
|
26
26
|
) -> Mapping[str, bool]:
|
|
27
27
|
changed: dict[str, bool] = {}
|
|
28
28
|
for name, target in RELEASE_TARGETS.items():
|
|
29
|
-
|
|
30
|
-
(
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
changed[name] = any(
|
|
30
|
+
(_ADDED_JSON_VERSION if manifest_format == "json" else _ADDED_TOML_VERSION).search(
|
|
31
|
+
runner(
|
|
32
|
+
("git", "diff", "--no-color", before, after, "--", manifest.as_posix()),
|
|
33
|
+
cwd=root,
|
|
34
|
+
capture_output=True,
|
|
35
|
+
).stdout
|
|
36
|
+
)
|
|
37
|
+
is not None
|
|
38
|
+
for manifest, manifest_format in release_manifests(target)
|
|
33
39
|
)
|
|
34
|
-
pattern = _ADDED_JSON_VERSION if target.format == "json" else _ADDED_TOML_VERSION
|
|
35
|
-
changed[name] = pattern.search(result.stdout) is not None
|
|
36
40
|
return changed
|
|
37
41
|
|
|
38
42
|
|
|
@@ -45,4 +49,4 @@ def pending_release_targets(
|
|
|
45
49
|
checker: PublicationChecker = publication_exists,
|
|
46
50
|
) -> Mapping[str, bool]:
|
|
47
51
|
_ = changed_release_targets(root, before=before, after=after, runner=runner)
|
|
48
|
-
return {name: not checker(
|
|
52
|
+
return {name: not all(checker(item) for item in target_requirements(root, name)) for name in RELEASE_TARGETS}
|
|
@@ -10,8 +10,7 @@ import re
|
|
|
10
10
|
import sys
|
|
11
11
|
import time
|
|
12
12
|
import tomllib
|
|
13
|
-
from
|
|
14
|
-
from typing import TYPE_CHECKING, ClassVar, Final, Literal, Protocol
|
|
13
|
+
from typing import TYPE_CHECKING, ClassVar, Literal, Protocol
|
|
15
14
|
from urllib.error import HTTPError
|
|
16
15
|
from urllib.parse import quote
|
|
17
16
|
from urllib.request import Request, urlopen
|
|
@@ -25,7 +24,7 @@ from sarj_standards.libs.release.tags import RELEASE_TARGETS, read_manifest_vers
|
|
|
25
24
|
|
|
26
25
|
|
|
27
26
|
if TYPE_CHECKING:
|
|
28
|
-
from collections.abc import Callable,
|
|
27
|
+
from collections.abc import Callable, Sequence
|
|
29
28
|
|
|
30
29
|
|
|
31
30
|
RegistryKind = Literal["npm", "pypi"]
|
|
@@ -60,32 +59,37 @@ class _Args(argparse.Namespace):
|
|
|
60
59
|
delay: timedelta = timedelta(seconds=10)
|
|
61
60
|
|
|
62
61
|
|
|
63
|
-
_TARGET_PACKAGES: Final[Mapping[str, tuple[RegistryKind, str]]] = MappingProxyType(
|
|
64
|
-
{
|
|
65
|
-
"typescript": ("npm", "@sarj/eslint-plugin"),
|
|
66
|
-
"bootstrap": ("pypi", "sarj-standards-bootstrap"),
|
|
67
|
-
"python": ("pypi", "sarj-python-lint"),
|
|
68
|
-
"sql": ("pypi", "sarj-sql-lint"),
|
|
69
|
-
"iac": ("pypi", "sarj-iac-lint"),
|
|
70
|
-
"standards": ("pypi", "code-standards"),
|
|
71
|
-
"tsconfig": ("npm", "@sarj/tsconfig"),
|
|
72
|
-
"docs-ui": ("npm", "@sarj/docs-ui"),
|
|
73
|
-
}
|
|
74
|
-
)
|
|
75
62
|
_EXACT_DEPENDENCY = re.compile(r"^(?P<name>[A-Za-z0-9_.-]+)==(?P<version>[^;\s]+)$")
|
|
76
63
|
_HTTP_OK = 200
|
|
77
64
|
_HTTP_NOT_FOUND = 404
|
|
78
65
|
|
|
79
66
|
|
|
80
67
|
def target_requirement(root: Path, target_name: str) -> RegistryRequirement:
|
|
68
|
+
requirements = target_requirements(root, target_name)
|
|
69
|
+
if len(requirements) != 1:
|
|
70
|
+
msg = f"release target has multiple registry publications: {target_name}"
|
|
71
|
+
raise ValueError(msg)
|
|
72
|
+
return requirements[0]
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
def target_requirements(root: Path, target_name: str) -> tuple[RegistryRequirement, ...]:
|
|
81
76
|
target = RELEASE_TARGETS.get(target_name)
|
|
82
|
-
|
|
83
|
-
if target is None or package is None:
|
|
77
|
+
if target is None or not target.publications:
|
|
84
78
|
msg = f"unsupported release target: {target_name}"
|
|
85
79
|
raise ValueError(msg)
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
80
|
+
resolved = root.resolve()
|
|
81
|
+
requirements: list[RegistryRequirement] = []
|
|
82
|
+
for publication in target.publications:
|
|
83
|
+
manifest = target.manifest if publication.manifest is None else publication.manifest
|
|
84
|
+
manifest_format = target.format if publication.format is None else publication.format
|
|
85
|
+
version = read_manifest_version(resolved / manifest, manifest_format)
|
|
86
|
+
requirements.append(RegistryRequirement(publication.registry, publication.name, version))
|
|
87
|
+
primary_version = requirements[0].version
|
|
88
|
+
if any(item.version != primary_version for item in requirements[1:]):
|
|
89
|
+
rendered = ", ".join(f"{item.name}=={item.version}" for item in requirements)
|
|
90
|
+
msg = f"atomic release target versions disagree: {target_name}: {rendered}"
|
|
91
|
+
raise ValueError(msg)
|
|
92
|
+
return tuple(requirements)
|
|
89
93
|
|
|
90
94
|
|
|
91
95
|
def publication_exists(requirement: RegistryRequirement) -> bool:
|
|
@@ -23,6 +23,7 @@ if TYPE_CHECKING:
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
ManifestFormat = Literal["json", "toml"]
|
|
26
|
+
RegistryKind = Literal["npm", "pypi"]
|
|
26
27
|
_GIT_NO_MATCH = 2
|
|
27
28
|
_GIT_MISSING_REVISION_CODES = frozenset((1, 128))
|
|
28
29
|
_TAGGER_EMAIL = "release-automation@sarj.ai"
|
|
@@ -44,6 +45,15 @@ class ReleaseTargetId(StrEnum):
|
|
|
44
45
|
class ReleaseTarget:
|
|
45
46
|
manifest: Path
|
|
46
47
|
format: ManifestFormat
|
|
48
|
+
publications: tuple["ReleasePublication", ...] = ()
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
@dataclass(frozen=True, slots=True)
|
|
52
|
+
class ReleasePublication:
|
|
53
|
+
registry: RegistryKind
|
|
54
|
+
name: str
|
|
55
|
+
manifest: Path | None = None
|
|
56
|
+
format: ManifestFormat | None = None
|
|
47
57
|
|
|
48
58
|
|
|
49
59
|
@dataclass(frozen=True, slots=True)
|
|
@@ -62,14 +72,35 @@ class TagSyncResult:
|
|
|
62
72
|
|
|
63
73
|
RELEASE_TARGETS: Final[Mapping[str, ReleaseTarget]] = MappingProxyType(
|
|
64
74
|
{
|
|
65
|
-
ReleaseTargetId.TYPESCRIPT: ReleaseTarget(
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
ReleaseTargetId.
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
ReleaseTargetId.
|
|
72
|
-
|
|
75
|
+
ReleaseTargetId.TYPESCRIPT: ReleaseTarget(
|
|
76
|
+
Path("packages/typescript/package.json"), "json", (ReleasePublication("npm", "@sarj/eslint-plugin"),)
|
|
77
|
+
),
|
|
78
|
+
ReleaseTargetId.BOOTSTRAP: ReleaseTarget(
|
|
79
|
+
Path("packages/bootstrap/pyproject.toml"), "toml", (ReleasePublication("pypi", "sarj-standards-bootstrap"),)
|
|
80
|
+
),
|
|
81
|
+
ReleaseTargetId.PYTHON: ReleaseTarget(
|
|
82
|
+
Path("packages/python/pyproject.toml"), "toml", (ReleasePublication("pypi", "sarj-python-lint"),)
|
|
83
|
+
),
|
|
84
|
+
ReleaseTargetId.SQL: ReleaseTarget(
|
|
85
|
+
Path("packages/sql/pyproject.toml"), "toml", (ReleasePublication("pypi", "sarj-sql-lint"),)
|
|
86
|
+
),
|
|
87
|
+
ReleaseTargetId.IAC: ReleaseTarget(
|
|
88
|
+
Path("packages/iac/pyproject.toml"), "toml", (ReleasePublication("pypi", "sarj-iac-lint"),)
|
|
89
|
+
),
|
|
90
|
+
ReleaseTargetId.STANDARDS: ReleaseTarget(
|
|
91
|
+
Path("packages/standards/pyproject.toml"),
|
|
92
|
+
"toml",
|
|
93
|
+
(
|
|
94
|
+
ReleasePublication("pypi", "code-standards"),
|
|
95
|
+
ReleasePublication("pypi", "sarj-standards", Path("packages/standards-compat/pyproject.toml"), "toml"),
|
|
96
|
+
),
|
|
97
|
+
),
|
|
98
|
+
ReleaseTargetId.TSCONFIG: ReleaseTarget(
|
|
99
|
+
Path("packages/tsconfig/package.json"), "json", (ReleasePublication("npm", "@sarj/tsconfig"),)
|
|
100
|
+
),
|
|
101
|
+
ReleaseTargetId.DOCS_UI: ReleaseTarget(
|
|
102
|
+
Path("packages/docs-ui/package.json"), "json", (ReleasePublication("npm", "@sarj/docs-ui"),)
|
|
103
|
+
),
|
|
73
104
|
}
|
|
74
105
|
)
|
|
75
106
|
RELEASE_ARTIFACT_PREFIXES: Final[Mapping[str, tuple[str, ...]]] = MappingProxyType(
|
|
@@ -78,7 +109,7 @@ RELEASE_ARTIFACT_PREFIXES: Final[Mapping[str, tuple[str, ...]]] = MappingProxyTy
|
|
|
78
109
|
ReleaseTargetId.PYTHON: ("packages/python/src/",),
|
|
79
110
|
ReleaseTargetId.SQL: ("packages/sql/src/",),
|
|
80
111
|
ReleaseTargetId.IAC: ("packages/iac/src/",),
|
|
81
|
-
ReleaseTargetId.STANDARDS: ("packages/standards/src/",),
|
|
112
|
+
ReleaseTargetId.STANDARDS: ("packages/standards/src/", "packages/standards-compat/src/"),
|
|
82
113
|
ReleaseTargetId.TYPESCRIPT: ("packages/typescript/src/",),
|
|
83
114
|
ReleaseTargetId.TSCONFIG: ("packages/tsconfig/base.json", "packages/tsconfig/strict.json"),
|
|
84
115
|
ReleaseTargetId.DOCS_UI: ("packages/docs-ui/src/",),
|
|
@@ -86,13 +117,30 @@ RELEASE_ARTIFACT_PREFIXES: Final[Mapping[str, tuple[str, ...]]] = MappingProxyTy
|
|
|
86
117
|
)
|
|
87
118
|
RELEASE_ARTIFACT_FILES: Final[Mapping[str, tuple[str, ...]]] = MappingProxyType(
|
|
88
119
|
{
|
|
89
|
-
name: (
|
|
120
|
+
name: tuple(
|
|
121
|
+
dict.fromkeys(
|
|
122
|
+
path.as_posix()
|
|
123
|
+
for manifest in (target.manifest, *(item.manifest for item in target.publications if item.manifest))
|
|
124
|
+
for path in (manifest, manifest.parent / "LICENSE")
|
|
125
|
+
)
|
|
126
|
+
)
|
|
90
127
|
for name, target in RELEASE_TARGETS.items()
|
|
91
128
|
}
|
|
92
129
|
)
|
|
93
130
|
_TAG_PATTERN: Final = re.compile(r"^(?P<target>[a-z][a-z0-9-]*)-v(?P<version>[^\s/]+)$")
|
|
94
131
|
|
|
95
132
|
|
|
133
|
+
def release_manifests(target: ReleaseTarget) -> tuple[tuple[Path, ManifestFormat], ...]:
|
|
134
|
+
return (
|
|
135
|
+
(target.manifest, target.format),
|
|
136
|
+
*(
|
|
137
|
+
(publication.manifest, publication.format)
|
|
138
|
+
for publication in target.publications
|
|
139
|
+
if publication.manifest is not None and publication.format is not None
|
|
140
|
+
),
|
|
141
|
+
)
|
|
142
|
+
|
|
143
|
+
|
|
96
144
|
def read_manifest_version(path: Path, manifest_format: ManifestFormat) -> str:
|
|
97
145
|
try:
|
|
98
146
|
data = _read_manifest(path, manifest_format)
|
|
@@ -222,7 +270,7 @@ def create_release_tags(
|
|
|
222
270
|
from sarj_standards.libs.release.registry import ( # ruff: ignore[import-outside-top-level] -- avoid the tags/registry import cycle
|
|
223
271
|
publication_exists,
|
|
224
272
|
require_publication,
|
|
225
|
-
|
|
273
|
+
target_requirements,
|
|
226
274
|
)
|
|
227
275
|
|
|
228
276
|
resolved = root.resolve()
|
|
@@ -258,10 +306,11 @@ def create_release_tags(
|
|
|
258
306
|
_require_remote_tag_commit(resolved, tag, target, resolved_commit, runner=runner)
|
|
259
307
|
existing.append(tag)
|
|
260
308
|
continue
|
|
261
|
-
|
|
309
|
+
requirements = target_requirements(resolved, target)
|
|
262
310
|
for attempt in range(attempts):
|
|
263
311
|
try:
|
|
264
|
-
|
|
312
|
+
for requirement in requirements:
|
|
313
|
+
require_publication(requirement, checker=checker)
|
|
265
314
|
break
|
|
266
315
|
except OSError, ValueError:
|
|
267
316
|
if attempt + 1 == attempts:
|
|
@@ -35,8 +35,8 @@ _GENERATED_READMES: Final = (
|
|
|
35
35
|
Path("packages/docs-ui/README.md"),
|
|
36
36
|
Path("plugins/sarj-audit/README.md"),
|
|
37
37
|
)
|
|
38
|
+
_GENERATED_SECURITY_POLICY: Final = Path(".github/SECURITY.md")
|
|
38
39
|
_EXECUTABLE_OR_LEGAL_DOCUMENTS: Final = (Path("CLAUDE.md"),)
|
|
39
|
-
_AUTHORED_DOCUMENTS: Final = (Path("docs/audits/rule-usefulness-audit.md"),)
|
|
40
40
|
_PACKAGE_DEFINITIONS: Final = (
|
|
41
41
|
("packages/standards/pyproject.toml", "PyPI", "text"),
|
|
42
42
|
("packages/standards-compat/pyproject.toml", "PyPI", None),
|
|
@@ -95,6 +95,7 @@ def _render_readmes(root: Path) -> dict[Path, str]:
|
|
|
95
95
|
for manifest_path, registry, engine, metadata in packages:
|
|
96
96
|
rendered[manifest_path.parent / "README.md"] = _package_readme(root, manifest_path, registry, engine, metadata)
|
|
97
97
|
rendered[root / "plugins/sarj-audit/README.md"] = _plugin_readme(root)
|
|
98
|
+
rendered[root / _GENERATED_SECURITY_POLICY] = _security_policy()
|
|
98
99
|
return dict(sorted(rendered.items()))
|
|
99
100
|
|
|
100
101
|
|
|
@@ -144,13 +145,13 @@ def _package_readme(
|
|
|
144
145
|
f"# {name}",
|
|
145
146
|
_string(metadata, "description"),
|
|
146
147
|
f"```bash\n{_install_command(name, registry)}\n```",
|
|
147
|
-
_package_usage(name, engine, version=_string(metadata, "version")),
|
|
148
|
+
_package_usage(name, engine, version=_string(metadata, "version"), metadata=metadata),
|
|
148
149
|
f"[Documentation]({_homepage(metadata)}) · [Source]({_source_url(metadata)})",
|
|
149
150
|
]
|
|
150
151
|
return "\n\n".join(sections) + "\n"
|
|
151
152
|
|
|
152
153
|
|
|
153
|
-
def _package_usage(name: str, engine: str | None, *, version: str) -> str:
|
|
154
|
+
def _package_usage(name: str, engine: str | None, *, version: str, metadata: dict[str, object]) -> str:
|
|
154
155
|
if name == "code-standards":
|
|
155
156
|
return (
|
|
156
157
|
"Use it from pre-commit with a coding agent so violations are flagged and fixed before commit.\n\n"
|
|
@@ -179,6 +180,16 @@ def _package_usage(name: str, engine: str | None, *, version: str) -> str:
|
|
|
179
180
|
"policy. `--no-config --isolated` prevents consumer project configuration and installed tools from "
|
|
180
181
|
"changing the selected bootstrap or Standards bundle."
|
|
181
182
|
)
|
|
183
|
+
if name == "@sarj/docs-ui":
|
|
184
|
+
exports = metadata.get("exports")
|
|
185
|
+
export_names = sorted(exports) if _is_object_table(exports) else []
|
|
186
|
+
rendered_exports = "\n".join(f"- `{name}{export_name.removeprefix('.')}`" for export_name in export_names)
|
|
187
|
+
return (
|
|
188
|
+
"Import `@sarj/docs-ui/styles.css` once, then compose the typed Astro components. "
|
|
189
|
+
"The live component and theme contract is published at "
|
|
190
|
+
"[code-standards.sarj.ai/design-system/](https://code-standards.sarj.ai/design-system/).\n\n"
|
|
191
|
+
f"Public exports:\n\n{rendered_exports}"
|
|
192
|
+
)
|
|
182
193
|
executable = (
|
|
183
194
|
None
|
|
184
195
|
if engine is None
|
|
@@ -205,6 +216,24 @@ def _plugin_readme(root: Path) -> str:
|
|
|
205
216
|
return "\n\n".join(sections) + "\n"
|
|
206
217
|
|
|
207
218
|
|
|
219
|
+
def _security_policy() -> str:
|
|
220
|
+
sections = [
|
|
221
|
+
_GENERATED_SENTINEL,
|
|
222
|
+
"# Security",
|
|
223
|
+
(
|
|
224
|
+
"Report vulnerabilities privately through the "
|
|
225
|
+
"[GitHub security advisory form]"
|
|
226
|
+
"(https://github.com/sarj-ai/code-standards/security/advisories/new). "
|
|
227
|
+
"Do not open a public issue for an undisclosed vulnerability."
|
|
228
|
+
),
|
|
229
|
+
(
|
|
230
|
+
"The default branch and latest published version of each package receive security fixes. "
|
|
231
|
+
"Maintainers will acknowledge a report within two business days and coordinate disclosure after a fix."
|
|
232
|
+
),
|
|
233
|
+
]
|
|
234
|
+
return "\n\n".join(sections) + "\n"
|
|
235
|
+
|
|
236
|
+
|
|
208
237
|
def _install_command(name: str, registry: str) -> str:
|
|
209
238
|
if registry == "npm":
|
|
210
239
|
return f"npm install --save-dev {name}"
|
|
@@ -242,7 +271,11 @@ def _validate_markdown_allowlist(root: Path) -> None:
|
|
|
242
271
|
|
|
243
272
|
|
|
244
273
|
def _allowed_document(relative: Path) -> bool:
|
|
245
|
-
if
|
|
274
|
+
if (
|
|
275
|
+
relative in _GENERATED_READMES
|
|
276
|
+
or relative == _GENERATED_SECURITY_POLICY
|
|
277
|
+
or relative in _EXECUTABLE_OR_LEGAL_DOCUMENTS
|
|
278
|
+
):
|
|
246
279
|
return True
|
|
247
280
|
match relative.parts:
|
|
248
281
|
case ("plugins", _plugin, "commands", filename):
|
|
@@ -258,16 +291,20 @@ def _allowed_document(relative: Path) -> bool:
|
|
|
258
291
|
def _documentation_paths(root: Path) -> tuple[Path, ...]:
|
|
259
292
|
required = {
|
|
260
293
|
*(root / path for path in _GENERATED_READMES),
|
|
294
|
+
root / _GENERATED_SECURITY_POLICY,
|
|
261
295
|
*(root / path for path in _EXECUTABLE_OR_LEGAL_DOCUMENTS),
|
|
262
296
|
}
|
|
263
297
|
maintained = {
|
|
264
|
-
*(root / path for path in _AUTHORED_DOCUMENTS if (root / path).is_file()),
|
|
265
298
|
*root.glob("plugins/*/commands/*.md"),
|
|
266
299
|
*root.glob("plugins/*/skills/*/SKILL.md"),
|
|
267
300
|
*root.glob("plugins/*/skills/*/references/*.md"),
|
|
268
301
|
}
|
|
269
302
|
missing = [
|
|
270
|
-
path
|
|
303
|
+
path
|
|
304
|
+
for path in sorted(required)
|
|
305
|
+
if not path.is_file()
|
|
306
|
+
and path.relative_to(root) not in _GENERATED_READMES
|
|
307
|
+
and path.relative_to(root) != _GENERATED_SECURITY_POLICY
|
|
271
308
|
]
|
|
272
309
|
if missing:
|
|
273
310
|
msg = f"required documentation is missing: {', '.join(str(path) for path in missing)}"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/eslint.application.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/markdownlint.strict.yaml
RENAMED
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/pyright.strict.json
RENAMED
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/ruff.application.toml
RENAMED
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/rule-inventory.v1.json
RENAMED
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/rule-warning-levels.v1.json
RENAMED
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/configs/yamllint.strict.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/exclusions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/packagemanager.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/adoption/transaction.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/catalogs/slack_automations.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/diagnostics/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/diagnostics/baseline.py
RENAMED
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/diagnostics/serialize.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/linting/library_policy.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/release/release_age.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/comment_corpus.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/repository.py
RENAMED
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/rule_authoring.py
RENAMED
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/rule_changes.py
RENAMED
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/rule_lifecycle.py
RENAMED
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/repository/rule_maintenance.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/libs/rules/corpus_runner.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/schemas/rule-catalog.v1.json
RENAMED
|
File without changes
|
{code_standards-7.0.2 → code_standards-7.0.4}/src/sarj_standards/schemas/rule-catalog.v1.schema.json
RENAMED
|
File without changes
|
|
File without changes
|