UNPKG

@layerzerolabs/solhint-config

Version:

LayerZero Solhint Config

16 lines (15 loc) 480 B
module.exports = { extends: 'solhint:recommended', rules: { 'no-global-import': 'error', 'compiler-version': 'off', 'no-unused-import': 'error', 'explicit-types': 'error', 'func-name-mixedcase': 'off', 'func-visibility': ['warn', { ignoreConstructors: true }], 'immutable-vars-naming': 'off', 'no-inline-assembly': 'off', 'const-name-snakecase': 'error', 'max-line-length': 'warn', }, };