Matthias Krüger

Results 218 comments of Matthias Krüger

You can make clippy warn about variable shadowing, in case it helps: https://rust-lang.github.io/rust-clippy/master/index.html#shadow_reuse

I wrote a simple crusher script for flif (matthiaskrgr/flifcrush), you can try running it on one of the images: ``` export FLIF=/path/to/flif/binary main.py nikon_d5200_14.rggb ``` It will take a lot...

Hi, I'm the maintainer of the flare-rpg-git pkgbuild in the arch user repo; I tried to upgrade the PKGBUILD (buildscript) to work with both repos, it does compile, but when...

Thanks for your help! http://pastebin.com/hgAKDQ88 @stefanbeller should be done now @clintbellanger changed this as well the error of the missing file still exists though. Mix_LoadMUS: Couldn't open '/usr/share/flare/music/title_theme.ogg' although the...

@clintbellanger # (new line added to prevent bold text) Mods lower on the list will overwrite data in the entries higher on the list fantasycore alpha_demo

You can already do this "manually" today with the old -Aall -Wlint hack: `cargo clippy --fix -- -Aclippy::all -Wclippy::redundant_clone` will only fix redundant_clone warnings. But having a dedicated --only=a,b,c flag...

I think to some extent rustfix already tries to skip applying lint results where the resulting code does not compile. I would love to be able to just throw everything...

I think it tries to apply suggestions no matter what...? https://github.com/rust-lang/cargo/blob/50a0af4bfd47294f53cf3000e1a7e076162280c6/src/cargo/ops/fix.rs#L581