Results 18 issues of Luis Schliesske

Hi everyone, I am referencing this issue that I wrongly opened in the `solc-js` repo, even though it should rightly belong here. https://github.com/ethereum/solc-js/issues/437 Should be of relevance to you. Happy...

Hi @juanfranblanco , It seems the solidity extension reads `.solhint.json` but it doesnt read `.solhintignore` ? Could you add support for that? Would be sweet!

**Why?** This can make debugging and locating the cause of failed transactions way simpler and way faster. So: With regards to `executeCall` and `executeDelegatecall` in [Executor.sol](https://github.com/gnosis/safe-contracts/blob/development/contracts/base/Executor.sol) It would be great...

Hi everyone, I am a heavy GnosisSafe user. Everytime I am using the web UI I think off some feature requests I have but I never know where to best...

Like `constant` state vars I also like to `snake-case` my `immutable` state vars because it makes it easier to spot in my code where I am relying on immutable values....

I use [lint-staged](https://www.npmjs.com/package/lint-staged) like so to run my husky pre-commit hook. ![image](https://user-images.githubusercontent.com/36712489/96725058-ca0db580-13b0-11eb-8475-54ce0c741d20.png) So it runs `solhint` against every `.sol` file. However, I had a linter bug with solc 0.7.4 which...

bug

Solidity greater than 0.7.4 allows you to have file-level function definitions. Solidity forces you not to give them a `visibility modifier` because they are always `pure` by default. `solhint` still...

bug

A rule for warning/error about any unused imports.

Requesting new rule to be added to solhint that's similar to `no-unused-vars` but for `no-unsed-functions` and it would look at all functions that are **not** `virtual` and thus should really...

feature-request
new-rule
awaiting user feedback

**Solidity version 0.7.4** ![image](https://user-images.githubusercontent.com/36712489/97595339-e4284300-1a03-11eb-96af-d7d0905279d2.png) Should the compiler warn about such name clashes even if one of them is a file-level function and the other one a function declared inside an...

bug :bug:
should compile without error
medium effort
medium impact
should have