turf/.prettierrc.json
mfedderly 25917d8b2e
Rework prettier setup (#2677)
* Upgrade hustky, lint-staged, and prettier.

Modify lint-staged and prettier configs
Add specific json/geojson formatting rules for prettier

* Apply prettier
2024-08-08 11:23:46 -04:00

12 lines
150 B
JSON

{
"trailingComma": "es5",
"overrides": [
{
"files": "*.{geojson,json}",
"options": {
"printWidth": 90
}
}
]
}