Skip to content

Instantly share code, notes, and snippets.

@Tmeister
Created January 11, 2018 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tmeister/faeab24ef92851b3d21335150eefcd6b to your computer and use it in GitHub Desktop.
Save Tmeister/faeab24ef92851b3d21335150eefcd6b to your computer and use it in GitHub Desktop.
Solidity Lint Rules
{
"custom-rules-filename": null,
"rules": {
"imports-on-top": true,
"variable-declarations": true,
"array-declarations": true,
"operator-whitespace": true,
"lbrace": true,
"mixedcase": false,
"camelcase": false,
"uppercase": true,
"no-with": true,
"no-empty-blocks": true,
"no-unused-vars": false,
"double-quotes": false,
"blank-lines": true,
"whitespace": true,
"indentation": [ "error", 2 ]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment