Closed jasonsenssylvain closed 6 years ago
(Experimental duplicate detection) Thanks for submitting this issue. Please also check if it is already covered by an existing one, like:
@jasoncodingnow Have you tried to disable all extensions?
You can configure the Solhint linter in your vscode user settings:
"solidity.linter": "solhint",
"solidity.solhintRules": {
"avoid-sha3": "warn"
}
@jasoncodingnow Was it the Solhint linter ?
This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines.
Happy Coding!
If you are using JuanBlanco.solidity extension, Solium is the default linter supported by the extension and you can configure it using the following user settings:
"solidity.linter": "solium",
"solidity.soliumRules": {
"quotes": ["error", "double"],
"indentation": ["error", 2]
}
Steps to Reproduce:
and it keep shows "only use indent of 4 space" what's going on?