Skip to content

Commit

Permalink
Add default overrides for solidity files
Browse files Browse the repository at this point in the history
adamgall committed Oct 22, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
adamgall Adam Gall
1 parent a45b446 commit e782284
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -6,5 +6,18 @@
"singleQuote": true,
"semi": true,
"arrowParens": "avoid",
"singleAttributePerLine": true
"singleAttributePerLine": true,
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false,
"explicitTypes": "preserve"
}
}
]
}

0 comments on commit e782284

Please sign in to comment.