Vale Lint & Fix Run Vale on files, then fix issues directly based on the lint output. Workflow 1. Run Vale with JSON output on the target file(s): 2. Parse the JSON output. Each issue has: - , (column range) — location - — rule name (e.g. , ) - — human-readable explanation - — , , or - — suggested fix type ( , , ) - — replacement candidates 3. Read the file and fix each issue: - For actions with clear suggestions: apply the best-fit replacement - For stylistic issues (passive voice, wordiness, weasel words): rewrite the sentence - For issues requiring judgment: use context to determine the be…