We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In our codebase, the linter complains about hundreds of instances such as:
title: "Settings", // TODO: ....
and
CustomSection(title: "App Info") { // TODO: ...
It is always about having only 1 space before the inline comment forward slashes (//). The linter wants to have 2 spaces, as in
//
Why ? And what undocumented rule is enforcing that? And why is it undocumented?