Files
protocol/apps-node/api/.prettierrc
2023-02-28 10:08:04 -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
}
}
]
}