We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
var-name-mixedcase
$
Given Solidity allows using a $ as a valid variable identifier, consider the following example:
contract A { function example() external pure returns (uint256) { uint256 $ = 1; return $; } }
The variable $ is marked as Linter: Variable name must be in mixedCase [var-name-mixedcase].
Linter: Variable name must be in mixedCase [var-name-mixedcase]
The library should not throw an error when the variable includes a $
The text was updated successfully, but these errors were encountered:
This is solved in this PR #465
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Description
Given Solidity allows using a
$
as a valid variable identifier, consider the following example:The variable
$
is marked asLinter: Variable name must be in mixedCase [var-name-mixedcase]
.Proposed solution
The library should not throw an error when the variable includes a
$
The text was updated successfully, but these errors were encountered: