Luis Schliesske
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.  So it runs `solhint` against every `.sol` file. However, I had a linter bug with solc 0.7.4 which...
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...
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...
**Solidity version 0.7.4**  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...