square-psychiatrist-19087
03/20/2025, 10:02 AMcheck goal is different from lint? Aren't they supposed to support all the same features like partitioning? Why check doesn't have that?proud-dentist-22844
03/20/2025, 2:34 PMfix, fmt, and lint share a lot of rules, so they work very similarly. check is separate, so unless someone has copied some of the fix/fmt/lint features to check, then the featureset might naturally differ.
I don't know specifically about whether check has support for partitioning, or what support it has.
At least, I believe this is the case. I'm going off my memory 😉, so there's always a chance my humanity is affecting my memory.square-psychiatrist-19087
03/20/2025, 2:35 PMsquare-psychiatrist-19087
03/20/2025, 2:35 PMproud-dentist-22844
03/20/2025, 2:37 PMfmt and lint used to use separate rules as well. I think around when fix was added, they were refactored to use a shared set of rules.proud-dentist-22844
03/20/2025, 2:38 PMfix. I can look for it later and see if there's some context. I have several things I need to do first though 🙂.wide-midnight-78598
03/20/2025, 11:12 PMwide-midnight-78598
03/20/2025, 11:12 PMsquare-psychiatrist-19087
03/20/2025, 11:16 PMwide-midnight-78598
03/20/2025, 11:24 PMcheck being typechecking/compilation - it’s expected you would put all of the files into a single batch to be operated on (but then, if you type check on multiple Python versions or something, that’s it’s own thing)square-psychiatrist-19087
03/20/2025, 11:37 PMproud-dentist-22844
03/21/2025, 1:32 AMsquare-psychiatrist-19087
03/21/2025, 11:15 AM