Files
protocol/.prettierrc
2023-02-21 21:55:45 -07:00

22 lines
399 B
Plaintext

{
"tabWidth": 4,
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always",
"overrides": [
{
"files": "*.sol",
"options": {
"singleQuote": false
}
},
{
"files": "*.yml",
"options": {
"tabWidth": 2
}
}
]
}