tornado-nova/.prettierrc

17 lines
257 B
Plaintext
Raw Normal View History

2021-06-03 20:56:46 +02:00
{
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"semi": false,
"printWidth": 110,
"overrides": [
{
"files": "*.sol",
"options": {
"singleQuote": false,
"printWidth": 130
}
}
]
}