Remove ecosystem_ci flag from Ruff CLI (#12596)

## Summary

@zanieb noticed while we were discussing #12595 that this flag is now
unnecessary, so remove it and the flags which reference it.

## Test Plan

Question for maintainers: is there a test to add *or* remove here? (I’ve
opened this as a draft PR with that in view!)
This commit is contained in:
Chris Krycho 2024-07-31 10:40:03 -06:00 committed by GitHub
parent a44d579f21
commit c1bc7f4dee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 2 additions and 14 deletions

View file

@ -221,7 +221,7 @@ class CheckOptions(CommandOptions):
if self.exclude:
args.extend(["--exclude", self.exclude])
if self.show_fixes:
args.extend(["--show-fixes", "--ecosystem-ci"])
args.extend(["--show-fixes"])
return args