dsa-connectors/.prettierrc

22 lines
440 B
Plaintext
Raw Normal View History

2021-10-16 09:21:41 +00:00
{
"printWidth": 120,
"singleQuote": false,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "none",
"semi": true,
"plugins": ["./node_modules/prettier-plugin-solidity"],
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": true,
"singleQuote": false,
"bracketSpacing": true,
"explicitTypes": "always"
}
}
]
}