prettier-plugin-gherkin
Advanced tools
Changelog
[3.0.0] - 2024-07-30
[BREAKING] Set default tabWidth
to 2, as documented in Gherkin Reference.
If you want to update to version 3 and use four space, you can override this values in your prettier configuration file:
{
// …
"overrides": [
{
"files": "*.feature",
"options": {
"tabWidth": 4
}
}
]
}