{
"bracketSpacing": true,
"printWidth": 120,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"plugins": ["prettier-plugin-solidity", "prettier-plugin-organize-imports"],
"overrides": [
{
"files": "*.md",
"options": {
"parser": "markdown",
"proseWrap": "always"
}
},
{
"files": "*.sol",
"options": {
"parser": "slang",
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
}
]
}
It's OK for projects to use whatever they want, but we can have a recommended recipe with good default and document what are the reasonable changes the projects can choose.