Public Access
The v0.49.x tag line diverged from origin/master, leaving many features only accessible via tags but not on the master branch. New modules: - ci/cancel_superseded_runs.py — cancel superseded CI runs - ci/check_workflow_artifact_deps.py — validate artifact deps - ci/check_workflow_tofu_init.py — validate tofu init steps - tools/check_alert_rules.py — validate Prometheus alert rules - tools/check_ansible_set_fact_to_json.py — lint set_fact usage - tools/check_docker_init.py — validate Docker init scripts - utils/jinja.py — Jinja2 template utilities - utils/ui.py — UI/console utilities Modified modules: - distribute_molecule.py: add --include-roles/--exclude-roles - utils/api.py: add container.credentials for private registry auth - install_tools.py: retry ansible-galaxy on transient timeouts - setup_image.py: skip dep resolution with --no-deps - cli.py: register new commands - i18n.py: add new translation keys Also removes accidentally committed .vale/styles/Google/ files. Test results: 2195 passed, 100% coverage. Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
16 lines
754 B
YAML
16 lines
754 B
YAML
extends: existence
|
|
message: "Use parentheses judiciously."
|
|
link: 'https://developers.google.com/style/parentheses'
|
|
nonword: true
|
|
level: suggestion
|
|
# `[^)]` rather than `.+`: a greedy match ran from the first '(' on a line to
|
|
# the last ')', so 'Text (one) and more (two).' produced a single alert
|
|
# covering everything between them. See issue #30.
|
|
# A bare 3-5 letter acronym is skipped: Acronyms.yml requires acronyms to be
|
|
# defined as 'Spelled Out Term (ACRONYM)', so flagging those parentheses would
|
|
# put the two rules in direct conflict. The acronym has to be the whole
|
|
# parenthetical — '(NASA rocket program)' is an ordinary aside and still
|
|
# flags. Length matches the {3,5} in Acronyms.yml. See PR #59.
|
|
tokens:
|
|
- '\((?![A-Z]{3,5}\))[^)]+\)'
|