UNPKG

prettier-plugin-solidity

Version:

A Prettier Plugin for automatically formatting your Solidity code.

7 lines (5 loc) 203 B
const stateMutability = (node) => node.stateMutability?.length > 0 ? [' ', node.stateMutability] : ''; export const ElementaryTypeName = { print: ({ node }) => [node.name, stateMutability(node)] };