Fridtjof Stoldt

Results 38 issues of Fridtjof Stoldt

Good morning, I have a small question about texture rendering. I want to create a fading effect where a texture get more transparent the more you zoom in to it....

feature
question

This PR is created in preparation to stabilize the `lint_reasons` feature. I hope this covers everything :upside_down_face: Tracking issue: https://github.com/rust-lang/rust/issues/54503

S-waiting-on-stabilization

Hey, often with delegates you want to let the user know how they can r+ and that they should use `r=` to approve the PR. An example comment often looks...

Our documentation, how to add a lint, uses an `EarlyLintPass` for the example lint. However, most new lints use the `LateLintPass` since they need type information from rustc. Since the...

C-enhancement
S-needs-discussion
A-documentation

The "Backtrace" setting is currently ignored when executing Clippy. It would be nice if this could be supported. Note for testing: In Clippy we have an internal lint which is...

Hello I'm currently taking a lecture in the topic of lexical analyzers where we focus on flex. flex has a thing called [Starting Conditions](https://ftp.gnu.org/old-gnu/Manuals/flex-2.5.4/html_mono/flex.html#TOC11) where you can basically set the...

I'm working on a project, that requires types to be transformed into an internal representation. Usually, this is done by calling `.into()` on the type. It would be awesome if...

Compiletest currently automatically allows all `unused` lints in the `CompileFail` and `Ui` modes. However, this doesn't extend to `.fixed` files, which are used inside Clippy. For this reason, we still...

An issue tracking PRs, which might be relevant for the next nightly sync (#345): * https://github.com/rust-lang/rust/pull/117649 * https://github.com/rust-lang/rust/pull/118250 * https://github.com/rust-lang/rust/pull/118256 * https://github.com/rust-lang/rust/pull/118394 * https://github.com/rust-lang/rust/pull/118470 * https://github.com/rust-lang/rust/pull/118527 * https://github.com/rust-lang/rust/pull/118420 * https://github.com/rust-lang/rust/pull/118500...

C-enhancement
S-waiting-on-nightly

This PR allows users to check if a given semantic type implements a specific trait. The implementation is inspired by Clippy's implementation of [`clippy_utils::ty::implements_trait`](https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/ty/fn.implements_trait.html). It already works for simple traits,...

C-enhancement
A-api