Ethlint configuration

Ethlint is a Smart Contract Security Analyzer for Solidity. It requires configuration via a .soliumrc.json configuration file as detailed in Ethlint's documentation .

If you don't specify your custom configuration file we use our default below. We suggest to add your own configuration file into your repository root directory to be able to specify your coding and quality standards.

.soliumrc.json

{
  "extends": "solium:recommended",
  "plugins": ["security"],
  "rules": {
    "quotes": ["error", "double"],
    "indentation": ["error", 4],
    "linebreak-style": ["error", "unix"]
  }
}