19 lines
332 B
JSON
19 lines
332 B
JSON
{
|
|
"plugins": ["prettier-plugin-solidity"],
|
|
"arrowParens": "avoid",
|
|
"printWidth": 120,
|
|
"tabWidth": 2,
|
|
"trailingComma": "all",
|
|
"overrides": [
|
|
{
|
|
"files": "*.sol",
|
|
"options": {
|
|
"printWidth": 120,
|
|
"tabWidth": 4,
|
|
"singleQuote": false,
|
|
"bracketSpacing": true
|
|
}
|
|
}
|
|
]
|
|
}
|