You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably it is not a bug but I am not able to apply fix. solium -d contrats and solium -d contrats --fix generates same output but there is no fixes were applied even with --fix flag. Is it a normal case?
[~/myDapp]$ solium -d contrats
contrats/eBlocBroker.sol
17:1 warning Line contains trailing whitespace no-trailing-whitespace
21:3 warning Line contains trailing whitespace no-trailing-whitespace
24:1 warning Line contains trailing whitespace no-trailing-whitespace
27:1 warning Line contains trailing whitespace no-trailing-whitespace
29:4 warning Line contains trailing whitespace no-trailing-whitespace
35:4 warning Line contains trailing whitespace no-trailing-whitespace
39:4 warning Line contains trailing whitespace no-trailing-whitespace
41:1 warning Line contains trailing whitespace no-trailing-whitespace
41:1 error Only use indent of 8 spaces. indentation
53:1 error Only use indent of 8 spaces. indentation
54:1 error Only use indent of 8 spaces. indentation
55:1 error Only use indent of 8 spaces. indentation
57:4 warning Line contains trailing whitespace no-trailing-whitespace
✖ 4 errors, 9 warnings found.
[~/myDapp]$ solium -d contrats --fix
contrats/eBlocBroker.sol
17:1 warning Line contains trailing whitespace no-trailing-whitespace
21:3 warning Line contains trailing whitespace no-trailing-whitespace
24:1 warning Line contains trailing whitespace no-trailing-whitespace
27:1 warning Line contains trailing whitespace no-trailing-whitespace
29:4 warning Line contains trailing whitespace no-trailing-whitespace
35:4 warning Line contains trailing whitespace no-trailing-whitespace
39:4 warning Line contains trailing whitespace no-trailing-whitespace
41:1 warning Line contains trailing whitespace no-trailing-whitespace
41:1 error Only use indent of 8 spaces. indentation
53:1 error Only use indent of 8 spaces. indentation
54:1 error Only use indent of 8 spaces. indentation
55:1 error Only use indent of 8 spaces. indentation
57:4 warning Line contains trailing whitespace no-trailing-whitespace
No fixes were applied.
✖ 4 errors, 9 warnings found.
The text was updated successfully, but these errors were encountered:
Probably it is not a bug but I am not able to apply fix.
solium -d contrats
andsolium -d contrats --fix
generates same output but there is no fixes were applied even with--fix
flag. Is it a normal case?The text was updated successfully, but these errors were encountered: