blob: 55d6ebe242f5e8fe0dd90ccb520e1f283525a203 (
plain)
1
2
3
4
5
6
|
#!/usr/bin/env bash
set -xu
target=${1:?}
instructions=$(mktemp)
echo "Fix the following lint errors, or silence them with a `# noqa:` comment if they aren't problematic:" >> "$instructions"
[[ ! $(lint -f "$target" >> "$instructions" 2>&1) ]] && aider --yes --message-file "$instructions" "$target"
|