diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-12-11 07:20:52 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-12-11 07:24:11 +0800 |
commit | 5e6d1779cb51fc1687c46f687a2140e05b0a6559 (patch) | |
tree | d9c60ff019ffaad7e1be4d37e374b7fa8ea51396 /contracts/.solhint.json | |
parent | c580f4ddcb61844e590e0829c32cbdd15ab03beb (diff) | |
download | dexon-sol-tools-5e6d1779cb51fc1687c46f687a2140e05b0a6559.tar dexon-sol-tools-5e6d1779cb51fc1687c46f687a2140e05b0a6559.tar.gz dexon-sol-tools-5e6d1779cb51fc1687c46f687a2140e05b0a6559.tar.bz2 dexon-sol-tools-5e6d1779cb51fc1687c46f687a2140e05b0a6559.tar.lz dexon-sol-tools-5e6d1779cb51fc1687c46f687a2140e05b0a6559.tar.xz dexon-sol-tools-5e6d1779cb51fc1687c46f687a2140e05b0a6559.tar.zst dexon-sol-tools-5e6d1779cb51fc1687c46f687a2140e05b0a6559.zip |
Re-use solhint configuration
Diffstat (limited to 'contracts/.solhint.json')
-rw-r--r-- | contracts/.solhint.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/contracts/.solhint.json b/contracts/.solhint.json new file mode 100644 index 000000000..076afe9f3 --- /dev/null +++ b/contracts/.solhint.json @@ -0,0 +1,20 @@ +{ + "extends": "default", + "rules": { + "avoid-low-level-calls": false, + "avoid-tx-origin": "warn", + "bracket-align": false, + "code-complexity": false, + "const-name-snakecase": "error", + "expression-indent": "error", + "function-max-lines": false, + "func-order": "error", + "indent": ["error", 4], + "max-line-length": ["warn", 160], + "no-inline-assembly": false, + "quotes": ["error", "double"], + "separate-by-one-line-in-contract": "error", + "space-after-comma": "error", + "statement-indent": "error" + } +} |