governance-patch/.prettierrc

17 lines
257 B
Plaintext
Raw Permalink Normal View History

2023-05-22 18:17:04 +03:00
{
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"semi": false,
"printWidth": 110,
"overrides": [
{
"files": "*.sol",
"options": {
"singleQuote": false,
"printWidth": 130
}
}
]
}