Charlie Marsh
|
fec887e481
|
Apply a limit to the number of fix iterations (#882)
|
2022-11-22 19:21:31 -05:00 |
|
Charlie Marsh
|
bdd32c0850
|
Enforce most pedantic lints on CI (#878)
|
2022-11-22 18:55:57 -05:00 |
|
Charlie Marsh
|
10dcd5fd0a
|
Remove unused imports
|
2022-11-22 18:45:24 -05:00 |
|
Charlie Marsh
|
b922e6ecc8
|
Fix clippy::unnecessary_wraps (pedantic) (#880)
https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_wraps
|
2022-11-22 18:25:30 -05:00 |
|
Charlie Marsh
|
f59799e0c4
|
Remove lingering empty lines
|
2022-11-22 17:54:24 -05:00 |
|
Charlie Marsh
|
814ddeb7ea
|
Remove always-inline (#879)
|
2022-11-22 17:13:25 -05:00 |
|
Charlie Marsh
|
9315b9f459
|
Remove Mode from various internal checkers (#877)
|
2022-11-22 16:57:47 -05:00 |
|
Charlie Marsh
|
113b5a10bf
|
Return Vec<Check> from check_tokens (#876)
|
2022-11-22 16:43:32 -05:00 |
|
Charlie Marsh
|
fe77fb70a1
|
Apply autofixes iteratively until code is stabilized (#875)
|
2022-11-22 16:37:52 -05:00 |
|
Charlie Marsh
|
c3f6170503
|
Update README with list of projects (#874)
|
2022-11-22 14:28:02 -05:00 |
|
Anders Kaseorg
|
a46160f0e2
|
Fix clippy::unreadable_literal (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#unreadable_literal
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
9a66cf2ffb
|
Fix clippy::uninlined_format_args (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
3205473612
|
Ignore clippy::struct_excessive_bools (pedantic)
“consider using a state machine or refactoring bools into two-variant
enums”
https://rust-lang.github.io/rust-clippy/master/index.html#struct_excessive_bools
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
0bb8b14ae1
|
Fix clippy::single_match_else (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#single_match_else
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
9cf4621071
|
Fix clippy::redundant_else (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#redundant_else
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
bbc9ed1b21
|
Fix clippy::redundant_closure_for_method_calls (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure_for_method_calls
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
517ca2604a
|
Fix clippy::needless_pass_by_value (pedantic)
“this argument is passed by value, but not consumed in the function
body”
https://rust-lang.github.io/rust-clippy/master/index.html#needless_pass_by_value
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
348ff509c0
|
Fix clippy::mut_mut (pedantic)
“this expression mutably borrows a mutable reference. Consider
reborrowing”
https://rust-lang.github.io/rust-clippy/master/index.html#mut_mut
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
fb545551f8
|
Fix clippy::match_bool (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#match_bool
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
3b33a431d6
|
Fix clippy::map_unwrap_or (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#map_unwrap_or
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
bc95690725
|
Fix clippy::manual_string_new (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#manual_string_new
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
9dc788d089
|
Fix clippy::let_underscore_drop (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_drop
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
15f63494a7
|
Fix clippy::items_after_statements (pedantic)
“adding items after statements is confusing, since items exist from
the start of the scope”
https://rust-lang.github.io/rust-clippy/master/index.html#items_after_statements
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
68668c20e8
|
Fix clippy::if_not_else (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#if_not_else
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
9462335371
|
Fix clippy::from_iter_instead_of_collect (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#from_iter_instead_of_collect
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
3dd6522b4f
|
Fix clippy::explicit_iter_loop (pedantic)
“it is more concise to loop over references to containers instead of
using explicit iteration methods”
https://rust-lang.github.io/rust-clippy/master/index.html#explicit_iter_loop
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
6b935121a7
|
Fix clippy::explicit_deref_methods (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#explicit_deref_methods
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
8d9d9b3204
|
Fix clippy::documentation_markdown (pedantic)
https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
0a506eff34
|
Fix clippy::cloned_instead_of_copied (pedantic)
“used `cloned` where `copied` could be used instead”
https://rust-lang.github.io/rust-clippy/master/index.html#cloned_instead_of_copied
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
7c7489c1dd
|
Ignore clippy::cast_possible_truncation (pedantic)
“casting `usize` to `u8` may truncate the value”
https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_truncation
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
ae90eccb7f
|
Fix clippy::cast_lossless (pedantic)
“casting `bool` to `u8` is more cleanly stated with `u8::from(_)`”
https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
|
2022-11-21 23:22:28 -05:00 |
|
Anders Kaseorg
|
7a61edbe46
|
Fix clippy::default-trait-access (pedantic) (#867)
|
2022-11-21 21:00:38 -05:00 |
|
Charlie Marsh
|
59615486d8
|
Bump version to 0.0.134
|
2022-11-21 16:15:23 -05:00 |
|
Andri Bergsson
|
ce116a80ad
|
Automatically remove redundant open modes #640 (#843)
|
2022-11-21 16:06:41 -05:00 |
|
Anders Kaseorg
|
731fba9006
|
Ignore clippy::unreadable-literal (pedantic) for CONFUSABLES (#864)
|
2022-11-21 16:00:05 -05:00 |
|
Anders Kaseorg
|
9bcf194fdc
|
Ignore clippy::match-same-arms (pedantic) in a few places (#863)
|
2022-11-21 15:59:58 -05:00 |
|
Anders Kaseorg
|
58949b564e
|
Fix clippy::trivially-copy-pass-by-ref (pedantic) (#862)
|
2022-11-21 15:59:51 -05:00 |
|
Anders Kaseorg
|
6b9e57fb78
|
Fix clippy::sort-unstable (pedantic) (#861)
|
2022-11-21 15:59:41 -05:00 |
|
Anders Kaseorg
|
cb119401a7
|
Fix clippy::inefficient-to-string (pedantic) (#860)
|
2022-11-21 15:59:35 -05:00 |
|
Charlie Marsh
|
0b9188011b
|
Bump version to 0.0.133
|
2022-11-21 13:39:37 -05:00 |
|
Anders Kaseorg
|
b657d912d9
|
Propagate errors from glob::Pattern::new (#858)
|
2022-11-21 13:39:19 -05:00 |
|
Charlie Marsh
|
1559671093
|
Target isort code in README.md
|
2022-11-21 13:38:01 -05:00 |
|
Charlie Marsh
|
70a53bf12b
|
Add unit tests for complexity check (#859)
|
2022-11-21 13:31:17 -05:00 |
|
Charlie Marsh
|
cd1e07f37c
|
Avoid incrementing McCabe complexity for class methods (#857)
|
2022-11-21 13:30:36 -05:00 |
|
Charlie Marsh
|
7bd6db62d9
|
Sort relative imports by parent level descending (#856)
|
2022-11-21 13:30:24 -05:00 |
|
Charlie Marsh
|
f8b49f308d
|
Upgrade RustPython (#855)
|
2022-11-21 13:20:03 -05:00 |
|
Charlie Marsh
|
b1f9c7b6bd
|
Update default complexity in README.md
|
2022-11-21 13:19:55 -05:00 |
|
Keming
|
0867d2ded9
|
Make it visible under light theme (#854)
|
2022-11-21 10:18:21 -05:00 |
|
messense
|
3f597a3b30
|
Upgrade maturin to 0.14 (#846)
|
2022-11-21 10:00:14 -05:00 |
|
Charlie Marsh
|
6733aad216
|
Avoid attempting to fix PEP 604 violations with deferred annotations (#845)
|
2022-11-20 21:41:54 -05:00 |
|