Skip to content

Commit

Permalink
overrides for yaml/toml/json/ini to match blockchain
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored Mar 15, 2024
1 parent 8051aa4 commit 1675cd3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
{
"printWidth": 120,
"singleQuote": true
"singleQuote": true,
"overrides": [
{
"files": ["*.yaml", "*.yml", "*.toml", "*.ini"],
"options": {
"tabWidth": 2,
"singleQuote": false,
"experimentalTernaries": true,
"useTabs": false
}
}
]
}

0 comments on commit 1675cd3

Please sign in to comment.