UNPKG

@hyperlane-xyz/core

Version:

Core solidity contracts for Hyperlane

25 lines (24 loc) 556 B
module.exports = { $schema: 'http://json.schemastore.org/prettierrc', trailingComma: 'es5', tabWidth: 2, semi: false, singleQuote: true, arrowParens: 'always', overrides: [ { files: '*.sol', options: { // These options are native to Prettier. printWidth: 100, tabWidth: 4, useTabs: false, singleQuote: false, bracketSpacing: true, // These options are specific to the Solidity Plugin explicitTypes: 'always', compiler: '>=0.8.15', }, }, ], }